diff options
author | Chris Forbes <[email protected]> | 2014-04-27 16:03:53 +1200 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2014-06-04 18:56:03 +1200 |
commit | 4b756b20c446bbaf0911d1b66c5a405ab3b133ef (patch) | |
tree | 67b52b3734b059baf0e2e8fbd603977704781c1b /src/glsl/ast.h | |
parent | 37ab3ddbf8ecc691b784fc2145242369f0b094f6 (diff) |
glsl: add support for `precise` in type_qualifier
Signed-off-by: Chris Forbes <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/glsl/ast.h')
-rw-r--r-- | src/glsl/ast.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/ast.h b/src/glsl/ast.h index 6b136f51879..b0430de071e 100644 --- a/src/glsl/ast.h +++ b/src/glsl/ast.h @@ -424,6 +424,7 @@ struct ast_type_qualifier { union { struct { unsigned invariant:1; + unsigned precise:1; unsigned constant:1; unsigned attribute:1; unsigned varying:1; |