diff options
author | Ian Romanick <[email protected]> | 2012-08-08 15:25:00 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2013-01-25 08:30:40 -0500 |
commit | 1d0e8c109c34ca31b5a00d1561f4fbfe53adf8c0 (patch) | |
tree | 37f34b37fd44846826da208f4c29b91fab1ada01 /src/mesa/main/getstring.c | |
parent | 07e215f4ec80619b0eac26b8a5ec08572527c62a (diff) |
mesa/es3: Enable ES 3.0 API and shading language version
v2: Add ARB_internalformat_query to the list of required extensions.
v3: Add OES_depth_texture_cube_map to the list of required extensions.
Signed-off-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/getstring.c')
-rw-r--r-- | src/mesa/main/getstring.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/getstring.c b/src/mesa/main/getstring.c index 1f23cc0a4ed..aa3a528fd3d 100644 --- a/src/mesa/main/getstring.c +++ b/src/mesa/main/getstring.c @@ -74,7 +74,9 @@ shading_language_version(struct gl_context *ctx) break; case API_OPENGLES2: - return (const GLubyte *) "OpenGL ES GLSL ES 1.0.16"; + return (ctx->Version < 30) + ? (const GLubyte *) "OpenGL ES GLSL ES 1.0.16" + : (const GLubyte *) "OpenGL ES GLSL ES 3.0"; case API_OPENGLES: /* fall-through */ |