diff options
author | Marek Olšák <[email protected]> | 2012-10-28 14:24:53 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-10-31 02:04:54 +0100 |
commit | 01f0bedc2db2f49a9b1a4516b35cf16711008c8a (patch) | |
tree | 1130456d39a11d6f800d294262f341f14ba51107 /src/mesa/main | |
parent | 7857dbeb171d6d674157e1b3ba49fefe4831257e (diff) |
mesa: remove NV_texgen_reflection extension enable flag
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/extensions.c | 4 | ||||
-rw-r--r-- | src/mesa/main/mtypes.h | 1 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 740784d3a4c..257e9f78666 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -309,7 +309,7 @@ static const struct extension extension_table[] = { { "GL_NV_point_sprite", o(NV_point_sprite), GL, 2001 }, { "GL_NV_primitive_restart", o(NV_primitive_restart), GL, 2002 }, { "GL_NV_read_buffer", o(dummy_true), ES2, 2011 }, - { "GL_NV_texgen_reflection", o(NV_texgen_reflection), GLL, 1999 }, + { "GL_NV_texgen_reflection", o(dummy_true), GLL, 1999 }, { "GL_NV_texture_barrier", o(NV_texture_barrier), GL, 2009 }, { "GL_NV_texture_env_combine4", o(NV_texture_env_combine4), GLL, 1999 }, { "GL_NV_texture_rectangle", o(NV_texture_rectangle), GLL, 2000 }, @@ -358,7 +358,6 @@ name_to_offset(const char* name) */ static const size_t default_extensions[] = { /* Vendor Extensions */ - o(NV_texgen_reflection), o(SGIS_texture_lod), 0, @@ -453,7 +452,6 @@ _mesa_enable_sw_extensions(struct gl_context *ctx) ctx->Extensions.NV_point_sprite = GL_TRUE; ctx->Extensions.NV_texture_env_combine4 = GL_TRUE; ctx->Extensions.NV_texture_rectangle = GL_TRUE; - /*ctx->Extensions.NV_texgen_reflection = GL_TRUE;*/ ctx->Extensions.NV_fragment_program_option = GL_TRUE; ctx->Extensions.EXT_gpu_program_parameters = GL_TRUE; ctx->Extensions.OES_standard_derivatives = GL_TRUE; diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 2f9b3a14a4d..93709dde8ad 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -3051,7 +3051,6 @@ struct gl_extensions GLboolean NV_primitive_restart; GLboolean NV_read_buffer; GLboolean NV_texture_barrier; - GLboolean NV_texgen_reflection; GLboolean NV_texture_env_combine4; GLboolean NV_texture_rectangle; GLboolean SGIS_texture_lod; |