From: Chad Versace Date: Thu, 27 Jan 2011 09:40:10 +0000 (-0800) Subject: glsl: Add depth layout qualifiers to ast_type_qualifier X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=565a22090c3f143a343c19249a92be6a84b291b0;p=mesa.git glsl: Add depth layout qualifiers to ast_type_qualifier --- diff --git a/src/glsl/ast.h b/src/glsl/ast.h index c4622f6142a..b2e19169e98 100644 --- a/src/glsl/ast.h +++ b/src/glsl/ast.h @@ -350,6 +350,14 @@ struct ast_type_qualifier { * qualifier is used. */ unsigned explicit_location:1; + + /** \name Layout qualifiers for GL_AMD_conservative_depth */ + /** \{ */ + unsigned depth_any:1; + unsigned depth_greater:1; + unsigned depth_less:1; + unsigned depth_unchanged:1; + /** \} */ } /** \brief Set of flags, accessed by name. */ q;