diff options
author | Brian <[email protected]> | 2006-12-15 10:07:26 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2006-12-15 10:07:26 -0700 |
commit | a90046f1097ad95de2aa95ca65741dff5cddced9 (patch) | |
tree | aaafa8447834afb7ecc1fd139168a64e1da2b4c7 /src/mesa/main/extensions.c | |
parent | becb393d42504e59811a3a7c9f077baffab5ce5d (diff) |
Lots of assorted changes for new GLSL compiler backend.
New datatypes, constants, variables.
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 135323f9c15..7845ea018ef 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -409,7 +409,9 @@ _mesa_enable_2_1_extensions(GLcontext *ctx) #if FEATURE_EXT_texture_sRGB ctx->Extensions.EXT_texture_sRGB = GL_TRUE; #endif - /* plus: shading language extensions, non-square uniform matrices */ +#ifdef FEATURE_ARB_shading_language_120 + ctx->Extensions.ARB_shading_language_120 = GL_TRUE; +#endif } |