Disabling multi-texturing

Started by
0 comments, last by VanKurt 22 years, 3 months ago
Whow, I finally got it working. But now I''ve got another problem: How can I disable multitexturing ? I mean, while I draw my Sky or Hud I don''t want multitexturing, so I have to switch off (for a short time). How can this be done ? Thx, VanKurt
Advertisement
Just disable texturing for all texture units you do not use.

glActiveTextureARB( GL_TEXTURE1_ARB);
glDisable( GL_TEXTURE_2D);
...

This topic is closed to new replies.

Advertisement