Skip to content
Snippets Groups Projects
Commit c907595b authored by Anuj Phogat's avatar Anuj Phogat Committed by Matt Turner
Browse files

glsl: Disable ARB_texture_rectangle in shader version 100.


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-stable@lists.freedesktop.org
Reviewed-by: default avatarMatt Turner <mattst88@gmail.com>
Reviewed-by: default avatarIan Romanick <ian.d.romanick@intel.com>
Signed-off-by: default avatarAnuj Phogat <anuj.phogat@gmail.com>
parent e0648015
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment