summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/getstring.c
diff options
context:
space:
mode:
authorIlia Mirkin <[email protected]>2016-05-26 13:58:42 -0400
committerIlia Mirkin <[email protected]>2016-05-26 21:25:53 -0400
commit4ccf8c952abb471f94d6f40786d896723f94c0ea (patch)
tree1725cf22a436c8248b4cd9ab55fffbb2f2164810 /src/mesa/main/getstring.c
parentfaae9ab2eeed28037f645fd66e68e4b9ff08b8e8 (diff)
mesa: add support for GLSL ES 3.20 version string
Signed-off-by: Ilia Mirkin <[email protected]> Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/main/getstring.c')
-rw-r--r--src/mesa/main/getstring.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/getstring.c b/src/mesa/main/getstring.c
index c39a076091e..6e9051188b3 100644
--- a/src/mesa/main/getstring.c
+++ b/src/mesa/main/getstring.c
@@ -80,6 +80,8 @@ shading_language_version(struct gl_context *ctx)
return (const GLubyte *) "OpenGL ES GLSL ES 3.00";
case 31:
return (const GLubyte *) "OpenGL ES GLSL ES 3.10";
+ case 32:
+ return (const GLubyte *) "OpenGL ES GLSL ES 3.20";
default:
_mesa_problem(ctx,
"Invalid OpenGL ES version in shading_language_version()");