Mesa (master): glsl: Parse 'layout' as a token with advanced blending or bindless

Kenneth Graunke kwg at kemper.freedesktop.org
Thu Feb 22 01:51:01 UTC 2018


Module: Mesa
Branch: master
Commit: 183ce5e629ee973d72a3e8b3361aa2de196cc203
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=183ce5e629ee973d72a3e8b3361aa2de196cc203

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Mon Feb 19 09:35:46 2018 -0800

glsl: Parse 'layout' as a token with advanced blending or bindless

Both KHR_blend_equation_advanced and ARB_bindless_texture provide
layout qualifiers, and are exposed in compatibility contexts.  We
need to parse the layout qualifier as a token in order for those
to work, but forgot to extend this check.

ARB_shader_image_load_store would need a similar treatment, but we
don't expose that in legacy OpenGL contexts.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=105161
Reviewed-by: Iago Toral Quiroga <itoral at igalia.com>

---

 src/compiler/glsl/glsl_lexer.ll | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/compiler/glsl/glsl_lexer.ll b/src/compiler/glsl/glsl_lexer.ll
index 4b36574b73..ed7a80a2bb 100644
--- a/src/compiler/glsl/glsl_lexer.ll
+++ b/src/compiler/glsl/glsl_lexer.ll
@@ -491,6 +491,8 @@ void		return VOID_TOK;
 
 layout		{
 		  if ((yyextra->is_version(140, 300))
+		      || yyextra->ARB_bindless_texture_enable
+		      || yyextra->KHR_blend_equation_advanced_enable
 		      || yyextra->AMD_conservative_depth_enable
 		      || yyextra->ARB_conservative_depth_enable
 		      || yyextra->ARB_explicit_attrib_location_enable




More information about the mesa-commit mailing list