diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2000-02-25 03:55:39 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2000-02-25 03:55:39 +0000 |
commit | e828bc8f61736f6ba2eff7b2d3dd24056c8b86e0 (patch) | |
tree | 7e8ff2fef8cec0988b77074b9591e692464931a9 /src/mesa/main/extensions.c | |
parent | 8ceb5c34dd4c0da73f9cb58b803a84e17e545c4b (diff) |
Fog coordinate stage which drivers may use to replace standard fogging
mechanism.
LogicOp state change callback
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 48b6dc90d4..b3b7a05382 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.17 2000/02/23 22:31:35 brianp Exp $ */ +/* $Id: extensions.c,v 1.18 2000/02/25 03:55:40 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -62,7 +62,7 @@ static struct { int enabled; const char *name; } default_extensions[] = { { DEFAULT_ON, "GL_EXT_texture3D" }, { ALWAYS_ENABLED, "GL_MESA_window_pos" }, { ALWAYS_ENABLED, "GL_MESA_resize_buffers" }, - { ALWAYS_ENABLED, "GL_EXT_shared_texture_palette" }, + { DEFAULT_ON, "GL_EXT_shared_texture_palette" }, { ALWAYS_ENABLED, "GL_EXT_rescale_normal" }, { ALWAYS_ENABLED, "GL_EXT_abgr" }, { ALWAYS_ENABLED, "GL_SGIS_texture_edge_clamp" }, @@ -72,10 +72,11 @@ static struct { int enabled; const char *name; } default_extensions[] = { { ALWAYS_ENABLED, "GL_NV_texgen_reflection" }, { DEFAULT_ON, "GL_PGI_misc_hints" }, { DEFAULT_ON, "GL_EXT_compiled_vertex_array" }, - { DEFAULT_OFF, "GL_EXT_vertex_array_set" }, { DEFAULT_ON, "GL_EXT_clip_volume_hint" }, { DEFAULT_ON, "GL_EXT_texture_env_add" }, { ALWAYS_ENABLED, "GL_ARB_tranpose_matrix" }, + { DEFAULT_OFF, "GL_EXT_vertex_array_set" }, + { DEFAULT_OFF, "GL_EXT_texture_env" }, }; |