diff options
author | Brian Paul <[email protected]> | 2008-07-24 14:28:43 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-07-24 15:11:59 -0600 |
commit | 0216a5843027a679c58c65ff6445f33a34d0e729 (patch) | |
tree | 2752b62d3137160b201667fea211ba93ea62e3eb /src/mesa/main | |
parent | 90a3af7d9d0849afcee0d35ed0621fe24e1008a9 (diff) |
mesa: don't include Mesa version in GL_SHADING_LANGUAGE_VERSION string
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/getstring.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mesa/main/getstring.c b/src/mesa/main/getstring.c index 973649da0dd..ad99de77b96 100644 --- a/src/mesa/main/getstring.c +++ b/src/mesa/main/getstring.c @@ -57,8 +57,10 @@ _mesa_GetString( GLenum name ) static const char *version_2_0 = "2.0 Mesa " MESA_VERSION_STRING; static const char *version_2_1 = "2.1 Mesa " MESA_VERSION_STRING; -#if FEATURE_ARB_shading_language_100 - static const char *sl_version_110 = "1.10 Mesa " MESA_VERSION_STRING; +#if FEATURE_ARB_shading_language_120_foo /* support not complete! */ + static const char *sl_version = "1.20"; +#elif FEATURE_ARB_shading_language_100 + static const char *sl_version = "1.10"; #endif if (!ctx) @@ -147,7 +149,7 @@ _mesa_GetString( GLenum name ) #if FEATURE_ARB_shading_language_100 case GL_SHADING_LANGUAGE_VERSION_ARB: if (ctx->Extensions.ARB_shading_language_100) - return (const GLubyte *) sl_version_110; + return (const GLubyte *) sl_version; goto error; #endif #if FEATURE_NV_fragment_program || FEATURE_ARB_fragment_program || \ |