diff options
author | Kristian Høgsberg <[email protected]> | 2015-05-13 10:53:46 +0200 |
---|---|---|
committer | Samuel Iglesias Gonsalvez <[email protected]> | 2015-07-14 07:04:03 +0200 |
commit | 84fc5fece006f2bd95287496e32482ac08bfd399 (patch) | |
tree | fef204c39afaf42c877a8afbb333e98577ce63ac /src/glsl/ast.h | |
parent | 6b09598d63b8b6069b230fbe8283c75cf86f711a (diff) |
glsl: Implement parser support for 'buffer' qualifier
This is used to identify shader storage buffer interface blocks where
buffer variables are declared.
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 ef74e5137b2..49212298e16 100644 --- a/src/glsl/ast.h +++ b/src/glsl/ast.h @@ -435,6 +435,7 @@ struct ast_type_qualifier { unsigned centroid:1; unsigned sample:1; unsigned uniform:1; + unsigned buffer:1; unsigned smooth:1; unsigned flat:1; unsigned noperspective:1; |