diff options
author | Brian Paul <[email protected]> | 2002-04-02 16:15:16 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-04-02 16:15:16 +0000 |
commit | 1537b63fce36f87b3606d0e7cdca2d10bbdffd56 (patch) | |
tree | d1aa68c5385e22a2770de0a973a8d40d2e04d936 /src/mesa/main/extensions.c | |
parent | 86a7cc6f2c6ec49b5f09f03a872a49bce5afbe85 (diff) |
GL_ARB_point_parameters support
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 f9cdf071681..fe43e668386 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.71 2002/03/23 16:33:53 brianp Exp $ */ +/* $Id: extensions.c,v 1.72 2002/04/02 16:15:17 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -60,6 +60,7 @@ static struct { { OFF, "GL_ARB_imaging", F(ARB_imaging) }, { OFF, "GL_ARB_multisample", F(ARB_multisample) }, { OFF, "GL_ARB_multitexture", F(ARB_multitexture) }, + { OFF, "GL_ARB_point_parameters", F(EXT_point_parameters) }, { OFF, "GL_ARB_shadow", F(ARB_shadow) }, { OFF, "GL_ARB_shadow_ambient", F(SGIX_shadow_ambient) }, { OFF, "GL_ARB_texture_border_clamp", F(ARB_texture_border_clamp) }, @@ -142,6 +143,7 @@ _mesa_enable_sw_extensions(GLcontext *ctx) "GL_ARB_depth_texture", "GL_ARB_imaging", "GL_ARB_multitexture", + "GL_ARB_point_parameters", "GL_ARB_shadow", "GL_ARB_shadow_ambient", "GL_ARB_texture_border_clamp", |