diff options
author | Chris Forbes <[email protected]> | 2013-11-29 21:21:56 +1300 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2013-12-07 17:14:39 +1300 |
commit | 51aa15aca2bf5764b8cd62bbf2329eda40f7a859 (patch) | |
tree | 93f13b8280c101da3a69ec0d9e8f251b4bd9582c /src/glsl/ast.h | |
parent | a1ca5802401c384c1eadbf72cf910c65e377600c (diff) |
glsl: Add frontend support for `sample` auxiliary storage qualifier
Signed-off-by: Chris Forbes <[email protected]>
Reviewed-by: Francisco Jerez <[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 5c214b6043b..76911f056d3 100644 --- a/src/glsl/ast.h +++ b/src/glsl/ast.h @@ -357,6 +357,7 @@ struct ast_type_qualifier { unsigned in:1; unsigned out:1; unsigned centroid:1; + unsigned sample:1; unsigned uniform:1; unsigned smooth:1; unsigned flat:1; |