diff options
author | Ian Romanick <[email protected]> | 2010-09-27 14:55:52 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-09-27 15:23:13 -0700 |
commit | 7f11d471e6bafae2282ec82ba4a19d30c440d28f (patch) | |
tree | fbdfebea41ca98836d97dde5bd8b14da60f63758 /src/mesa/main/hint.c | |
parent | 4da5f1b7c52fb02a3b2baa846931c2dd5ee1b92e (diff) |
mesa: Force GL_SGIS_generate_mipmap to always be enabled
As per discussions at XDS.
Diffstat (limited to 'src/mesa/main/hint.c')
-rw-r--r-- | src/mesa/main/hint.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/main/hint.c b/src/mesa/main/hint.c index e2d4129a382..8902ae37763 100644 --- a/src/mesa/main/hint.c +++ b/src/mesa/main/hint.c @@ -97,10 +97,6 @@ _mesa_Hint( GLenum target, GLenum mode ) /* GL_SGIS_generate_mipmap */ case GL_GENERATE_MIPMAP_HINT_SGIS: - if (!ctx->Extensions.SGIS_generate_mipmap) { - _mesa_error(ctx, GL_INVALID_ENUM, "glHint(target)"); - return; - } if (ctx->Hint.GenerateMipmap == mode) return; FLUSH_VERTICES(ctx, _NEW_HINT); |