diff options
author | Brian <[email protected]> | 2007-04-08 21:48:19 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-04-08 21:48:19 -0600 |
commit | af807a4696866a4ee08bb2a4e95b9c02011db530 (patch) | |
tree | c51b2a54eaa86e9086a539f27544e05ef54dd5a6 /src/mesa/main | |
parent | 5c0c60a13cb95032a49aa77ae7275387a351a057 (diff) |
enable GLSL 1.20
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/config.h | 1 | ||||
-rw-r--r-- | src/mesa/main/extensions.c | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index 8ea2d2c615a..a4de3bd1fae 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -300,6 +300,7 @@ #define FEATURE_ARB_fragment_shader _HAVE_FULL_GL #define FEATURE_ARB_shader_objects (FEATURE_ARB_vertex_shader || FEATURE_ARB_fragment_shader) #define FEATURE_ARB_shading_language_100 FEATURE_ARB_shader_objects +#define FEATURE_ARB_shading_language_120 FEATURE_ARB_shader_objects #define FEATURE_EXT_framebuffer_blit _HAVE_FULL_GL #define FEATURE_EXT_framebuffer_object _HAVE_FULL_GL diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index b61cb821f7d..4e44c5b7103 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -200,6 +200,9 @@ _mesa_enable_sw_extensions(GLcontext *ctx) #if FEATURE_ARB_shading_language_100 ctx->Extensions.ARB_shading_language_100 = GL_TRUE; #endif +#if FEATURE_ARB_shading_language_120 + ctx->Extensions.ARB_shading_language_120 = GL_TRUE; +#endif ctx->Extensions.ARB_shadow = GL_TRUE; ctx->Extensions.ARB_texture_border_clamp = GL_TRUE; ctx->Extensions.ARB_texture_cube_map = GL_TRUE; |