diff options
author | Ian Romanick <[email protected]> | 2004-01-12 22:50:01 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2004-01-12 22:50:01 +0000 |
commit | 553a8e0e7b0e8ec2f208a582c6e644cd340dba53 (patch) | |
tree | 92f5ec8a7c318eea837b1a8c6f0ed7315d840690 /src/mesa/drivers/dri/mga | |
parent | e96d5b984635b0e54ba72458388034dafc07dc50 (diff) |
Removed redundant extension strings. The Mesa extension mechanism
automatically enables "duplicate" extensions without the driver
explicitly enabling them.
Diffstat (limited to 'src/mesa/drivers/dri/mga')
-rw-r--r-- | src/mesa/drivers/dri/mga/mga_xmesa.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/mga/mga_xmesa.c b/src/mesa/drivers/dri/mga/mga_xmesa.c index 7f199ea5c41..52145e62e87 100644 --- a/src/mesa/drivers/dri/mga/mga_xmesa.c +++ b/src/mesa/drivers/dri/mga/mga_xmesa.c @@ -289,13 +289,11 @@ static const char * const g400_extensions[] = { "GL_ARB_multitexture", "GL_ARB_texture_env_add", - "GL_EXT_texture_env_add", "GL_ARB_texture_env_combine", - "GL_EXT_texture_env_combine", "GL_ARB_texture_env_crossbar", - "GL_ATI_texture_env_combine3", + "GL_EXT_texture_env_combine", "GL_EXT_texture_edge_clamp", - "GL_SGIS_texture_edge_clamp", + "GL_ATI_texture_env_combine3", #if defined (MESA_packed_depth_stencil) "GL_MESA_packed_depth_stencil", #endif @@ -315,10 +313,10 @@ static const char * const card_extensions[] = #endif "GL_EXT_secondary_color", "GL_EXT_stencil_wrap", + "GL_EXT_texture_rectangle", "GL_MESA_ycbcr_texture", "GL_SGIS_generate_mipmap", "GL_SGIS_texture_lod", - "GL_NV_texture_rectangle", NULL }; |