diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2000-10-27 16:44:40 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2000-10-27 16:44:40 +0000 |
commit | fe5d67d95f3a5fc84c5421d409a6464642aaf2cb (patch) | |
tree | e425a9d97e9e1bbdf4848b313c7c1548db11cb36 /src/mesa/main/extensions.c | |
parent | ba58a6665f21319a636ec4c09f7f592fbc8e36b5 (diff) |
Implement EXT_fog_coord and EXT_secondary_color.
EXT_secondary_color is disabled until we get some dispatch offsets from SGI.
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index e687cd16c7..010e95a71a 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.36 2000/09/25 16:03:59 brianp Exp $ */ +/* $Id: extensions.c,v 1.37 2000/10/27 16:44:40 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -92,7 +92,12 @@ static struct { int enabled; const char *name; } default_extensions[] = { { DEFAULT_ON, "GL_SGIS_pixel_texture" }, { DEFAULT_ON, "GL_SGIS_texture_edge_clamp" }, { DEFAULT_ON, "GL_SGIX_pixel_texture" }, - { DEFAULT_OFF, "GL_3DFX_texture_compression_FXT1" } + { DEFAULT_OFF, "GL_3DFX_texture_compression_FXT1" }, + + { DEFAULT_OFF, "GL_EXT_secondary_color" }, + { DEFAULT_ON, "GL_EXT_fog_coord" }, + { DEFAULT_OFF, "GL_EXT_bgra" }, + { DEFAULT_OFF, "GL_EXT_cull_vertex" }, }; |