From 87d1a26ba38e75f6988e094dbfbc0f77c0ae502b Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 7 Nov 2008 16:08:21 -0700 Subject: mesa: add support for 'centroid' qualifier in GLSL 1.20 --- src/mesa/shader/slang/library/slang_shader.syn | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'src/mesa/shader/slang/library/slang_shader.syn') diff --git a/src/mesa/shader/slang/library/slang_shader.syn b/src/mesa/shader/slang/library/slang_shader.syn index 3576e325fa..a95fa0df90 100644 --- a/src/mesa/shader/slang/library/slang_shader.syn +++ b/src/mesa/shader/slang/library/slang_shader.syn @@ -138,6 +138,10 @@ .emtcode TYPE_VARIANT 90 .emtcode TYPE_INVARIANT 91 +/* centroid qualifier */ +.emtcode TYPE_CENTER 95 +.emtcode TYPE_CENTROID 96 + /* type specifier */ .emtcode TYPE_SPECIFIER_VOID 0 .emtcode TYPE_SPECIFIER_BOOL 1 @@ -884,18 +888,22 @@ single_declaration_6 constant_expression .emit VARIABLE_ARRAY_EXPLICIT .or .true .emit VARIABLE_ARRAY_UNKNOWN; /* - * ::= + * ::= * * Example: "invariant varying highp vec3" */ fully_specified_type_space - fully_specified_type_optinvariant .and fully_specified_type_optqual .and fully_specified_type_optprec .and type_specifier_space; + fully_specified_type_optinvariant .and fully_specified_type_optcentroid .and fully_specified_type_optqual .and fully_specified_type_optprec .and type_specifier_space; fully_specified_type_nospace - fully_specified_type_optinvariant .and fully_specified_type_optqual .and fully_specified_type_optprec .and type_specifier_nospace; + fully_specified_type_optinvariant .and fully_specified_type_optcentroid .and fully_specified_type_optqual .and fully_specified_type_optprec .and type_specifier_nospace; fully_specified_type_optinvariant fully_specified_type_invariant .or .true .emit TYPE_VARIANT; fully_specified_type_invariant invariant_qualifier .and space; +fully_specified_type_optcentroid + fully_specified_type_centroid .or .true .emit TYPE_CENTER; +fully_specified_type_centroid + centroid_qualifier .and space; fully_specified_type_optqual fully_specified_type_qual .or .true .emit TYPE_QUALIFIER_NONE; fully_specified_type_qual @@ -911,6 +919,9 @@ fully_specified_type_prec invariant_qualifier "invariant" .emit TYPE_INVARIANT; +centroid_qualifier + "centroid" .emit TYPE_CENTROID; + /* * ::= "const" -- cgit v1.2.3