diff options
author | Brian Paul <[email protected]> | 2000-05-22 18:46:52 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-05-22 18:46:52 +0000 |
commit | f2fc19d7851526e4fd4de73b4b9b053a6a87153d (patch) | |
tree | 4f3a0a1408f86a7fb543e20a574bf462b855a4c4 /src/mesa/main/extensions.c | |
parent | 86fc370d399167ec9bb978d053d4a72215c86c16 (diff) |
added GL_EXT_blend_func_separate
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index e8f7456705a..bcb9e0c426c 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.26 2000/05/22 16:33:21 brianp Exp $ */ +/* $Id: extensions.c,v 1.27 2000/05/22 18:46:52 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -49,16 +49,18 @@ struct extension { static struct { int enabled; const char *name; } default_extensions[] = { - { DEFAULT_OFF, "GL_ARB_imaging" }, + { DEFAULT_OFF, "GL_ARB_imaging" }, /* in progress */ { DEFAULT_ON, "GL_ARB_multitexture" }, - { DEFAULT_OFF, "GL_ARB_texture_cube_map" }, + { DEFAULT_OFF, "GL_ARB_texture_cube_map" }, /* in progress */ { ALWAYS_ENABLED, "GL_ARB_tranpose_matrix" }, { ALWAYS_ENABLED, "GL_EXT_abgr" }, { 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_convolution" }, /* in progress */ { DEFAULT_ON, "GL_EXT_compiled_vertex_array" }, { DEFAULT_ON, "GL_EXT_histogram" }, { DEFAULT_ON, "GL_EXT_paletted_texture" }, |