From: Ilia Mirkin Date: Thu, 26 May 2016 17:58:42 +0000 (-0400) Subject: mesa: add support for GLSL ES 3.20 version string X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4ccf8c952abb471f94d6f40786d896723f94c0ea;p=mesa.git mesa: add support for GLSL ES 3.20 version string Signed-off-by: Ilia Mirkin Reviewed-by: Anuj Phogat --- 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()");