From: Ian Romanick Date: Thu, 15 Sep 2016 18:16:02 +0000 (-0700) Subject: glsl/standalone: Enable GLSL 4.00 through 4.50 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5f7f7d582b1d6d3696506250743fd3f6be3277b8;p=mesa.git glsl/standalone: Enable GLSL 4.00 through 4.50 Signed-off-by: Ian Romanick Reviewed-by: Kenneth Graunke --- diff --git a/src/compiler/glsl/standalone.cpp b/src/compiler/glsl/standalone.cpp index a7e625489f3..6b1c2cec849 100644 --- a/src/compiler/glsl/standalone.cpp +++ b/src/compiler/glsl/standalone.cpp @@ -153,6 +153,12 @@ initialize_context(struct gl_context *ctx, gl_api api) break; case 150: case 330: + case 400: + case 410: + case 420: + case 430: + case 440: + case 450: ctx->Const.MaxClipPlanes = 8; ctx->Const.MaxDrawBuffers = 8; ctx->Const.MinProgramTexelOffset = -8; @@ -324,6 +330,12 @@ standalone_compile_shader(const struct standalone_options *_options, case 140: case 150: case 330: + case 400: + case 410: + case 420: + case 430: + case 440: + case 450: glsl_es = false; break; default: