diff options
Diffstat (limited to 'src/mesa')
| -rw-r--r-- | src/mesa/main/enable.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index f432be183c..47d19ab932 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -231,7 +231,7 @@ enable_texture(GLcontext *ctx, GLboolean state, GLbitfield bit)     const GLuint newenabled = (!state)         ? (texUnit->Enabled & ~bit) :  (texUnit->Enabled | bit); -   if (!ctx->DrawBuffer->Visual.rgbMode || texUnit->Enabled == newenabled) +   if (texUnit->Enabled == newenabled)         return GL_FALSE;     FLUSH_VERTICES(ctx, _NEW_TEXTURE);  | 
