diff options
author | Brian Paul <[email protected]> | 2000-10-27 18:31:21 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-10-27 18:31:21 +0000 |
commit | a14cbff8e5b30539d8fdc3497a0e128992efa6c9 (patch) | |
tree | ebe73985a8b4fa388b66dd4297f46f38a8e18b37 /src/mesa/main/extensions.c | |
parent | fe5d67d95f3a5fc84c5421d409a6464642aaf2cb (diff) |
Enabled GL_EXT_secondary_color. Fixed a bunch of typos in the dlist.c
and state.c file for plugging those functions into the dispatch table.
Don't use Mesa 3.5 for DRI until SGI approves the new dispatch offsets.
Commented-out references to ctx->FogMode and VB->Specular in FX driver.
Minor clean-up in extensions.c
Removed unused prototype in fog.h
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 010e95a71ae..823c7f405e0 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.37 2000/10/27 16:44:40 keithw Exp $ */ +/* $Id: extensions.c,v 1.38 2000/10/27 18:31:22 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -56,20 +56,24 @@ static struct { int enabled; const char *name; } default_extensions[] = { { DEFAULT_ON, "GL_ARB_texture_env_add" }, { ALWAYS_ENABLED, "GL_ARB_tranpose_matrix" }, { ALWAYS_ENABLED, "GL_EXT_abgr" }, + { DEFAULT_OFF, "GL_EXT_bgra" }, { DEFAULT_ON, "GL_EXT_blend_color" }, { DEFAULT_ON, "GL_EXT_blend_func_separate" }, { DEFAULT_ON, "GL_EXT_blend_logic_op" }, { DEFAULT_ON, "GL_EXT_blend_minmax" }, { DEFAULT_ON, "GL_EXT_blend_subtract" }, { DEFAULT_ON, "GL_EXT_clip_volume_hint" }, + { DEFAULT_OFF, "GL_EXT_cull_vertex" }, { DEFAULT_ON, "GL_EXT_convolution" }, { DEFAULT_ON, "GL_EXT_compiled_vertex_array" }, + { DEFAULT_ON, "GL_EXT_fog_coord" }, { DEFAULT_ON, "GL_EXT_histogram" }, { DEFAULT_ON, "GL_EXT_packed_pixels" }, { DEFAULT_ON, "GL_EXT_paletted_texture" }, { DEFAULT_ON, "GL_EXT_point_parameters" }, { ALWAYS_ENABLED, "GL_EXT_polygon_offset" }, { ALWAYS_ENABLED, "GL_EXT_rescale_normal" }, + { DEFAULT_ON, "GL_EXT_secondary_color" }, { DEFAULT_ON, "GL_EXT_shared_texture_palette" }, { DEFAULT_ON, "GL_EXT_stencil_wrap" }, { DEFAULT_ON, "GL_EXT_texture3D" }, @@ -92,12 +96,7 @@ 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_EXT_secondary_color" }, - { DEFAULT_ON, "GL_EXT_fog_coord" }, - { DEFAULT_OFF, "GL_EXT_bgra" }, - { DEFAULT_OFF, "GL_EXT_cull_vertex" }, + { DEFAULT_OFF, "GL_3DFX_texture_compression_FXT1" } }; |