From: Anuj Phogat <anuj.pho...@gmail.com> OpenGL with ARB_ES2_compatibility allows shaders that specify #version 100.
This fixes the Khronos OpenGL test(Texture_Rectangle_Samplers_frag.test) failure. Cc: mesa-sta...@lists.freedesktop.org Reviewed-by: Matt Turner <matts...@gmail.com> Signed-off-by: Anuj Phogat <anuj.pho...@gmail.com> --- src/glsl/glsl_parser_extras.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/glsl/glsl_parser_extras.cpp b/src/glsl/glsl_parser_extras.cpp index e67988f..c2ef3a0 100644 --- a/src/glsl/glsl_parser_extras.cpp +++ b/src/glsl/glsl_parser_extras.cpp @@ -291,6 +291,10 @@ _mesa_glsl_parse_state::process_version_directive(YYLTYPE *locp, int version, } } + if (this->es_shader) { + this->ARB_texture_rectangle_enable = false; + } + this->language_version = version; bool supported = false; -- 1.8.3.2 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev