glsl: Add depth layout qualifiers to ast_type_qualifier

This commit is contained in:
Chad Versace
2011-01-27 01:40:10 -08:00
parent 0423f24eb8
commit 565a22090c
+8
View File
@@ -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;