summaryrefslogtreecommitdiff
path: root/src/glsl/ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/glsl/ast.h')
-rw-r--r--src/glsl/ast.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/glsl/ast.h b/src/glsl/ast.h
index adb5fb11d4..655054ff6f 100644
--- a/src/glsl/ast.h
+++ b/src/glsl/ast.h
@@ -302,6 +302,12 @@ struct ast_type_qualifier {
unsigned smooth:1;
unsigned flat:1;
unsigned noperspective:1;
+
+ /** \name Layout qualifiers for GL_ARB_fragment_coord_conventions */
+ /*@{*/
+ unsigned origin_upper_left:1;
+ unsigned pixel_center_integer:1;
+ /*@}*/
};
class ast_struct_specifier : public ast_node {