diff options
author | Brian Paul <[email protected]> | 2000-05-30 02:28:03 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-05-30 02:28:03 +0000 |
commit | ad68f17a06cc07520e1462a7261a9d1c51a136a9 (patch) | |
tree | f0933aa0a6e09afe8567b42bd54414a700d65581 /src/mesa/main/extensions.c | |
parent | aea03c424d4223aee334a66a5702d37e1e1a08cc (diff) |
initial work for GL_NV_blend_square extension
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 92615396dad..327b0ade345 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.29 2000/05/24 14:04:06 brianp Exp $ */ +/* $Id: extensions.c,v 1.30 2000/05/30 02:28:03 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -82,6 +82,7 @@ static struct { int enabled; const char *name; } default_extensions[] = { { DEFAULT_ON, "GL_INGR_blend_func_separate" }, { ALWAYS_ENABLED, "GL_MESA_window_pos" }, { ALWAYS_ENABLED, "GL_MESA_resize_buffers" }, + { DEFAULT_OFF, "GL_NV_blend_square" }, { ALWAYS_ENABLED, "GL_NV_texgen_reflection" }, { DEFAULT_ON, "GL_PGI_misc_hints" }, { DEFAULT_ON, "GL_SGI_color_matrix" }, @@ -107,6 +108,7 @@ update_extension_flags( GLcontext *ctx ) ctx->Extensions.HaveTextureCompression = gl_extension_is_enabled(ctx, "GL_ARB_texture_compression"); ctx->Extensions.HaveTextureCompressionS3TC = gl_extension_is_enabled(ctx, "GL_EXT_texture_compression_s3tc"); ctx->Extensions.HaveTextureCompressionFXT1 = gl_extension_is_enabled(ctx, "GL_3DFX_texture_compression_FXT1"); + ctx->Extensions.HaveBlendSquare = gl_extension_is_enabled(ctx, "GL_NV_blend_square"); } |