summaryrefslogtreecommitdiffstats
path: root/src/glsl/ir.h
diff options
context:
space:
mode:
authorChris Forbes <[email protected]>2014-04-27 16:03:53 +1200
committerChris Forbes <[email protected]>2014-06-04 18:56:03 +1200
commit4b756b20c446bbaf0911d1b66c5a405ab3b133ef (patch)
tree67b52b3734b059baf0e2e8fbd603977704781c1b /src/glsl/ir.h
parent37ab3ddbf8ecc691b784fc2145242369f0b094f6 (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/ir.h')
-rw-r--r--src/glsl/ir.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/ir.h b/src/glsl/ir.h
index 2afafe4b5c7..b4e52d3d0a5 100644
--- a/src/glsl/ir.h
+++ b/src/glsl/ir.h
@@ -561,6 +561,7 @@ public:
unsigned centroid:1;
unsigned sample:1;
unsigned invariant:1;
+ unsigned precise:1;
/**
* Has this variable been used for reading or writing?