diff options
author | Lionel Landwerlin <[email protected]> | 2016-11-30 14:47:41 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2016-12-07 11:02:16 +0000 |
commit | 039d836d6ea5621ede88ff3504be841a6dd865c6 (patch) | |
tree | b3a34fad43bb1cb7b85b5641ce02fbcc6673a772 /src/compiler/glsl/ast.h | |
parent | 0ff74a8990d9fe37365beb35ed8abacfbf3ed567 (diff) |
mesa: add support for GL_INTEL_conservative_rasterization
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Chris Forbes <[email protected]>
Diffstat (limited to 'src/compiler/glsl/ast.h')
-rw-r--r-- | src/compiler/glsl/ast.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/compiler/glsl/ast.h b/src/compiler/glsl/ast.h index df3a744de9c..0e32c36528e 100644 --- a/src/compiler/glsl/ast.h +++ b/src/compiler/glsl/ast.h @@ -610,6 +610,11 @@ struct ast_type_qualifier { * Flag set if GL_ARB_post_depth_coverage layout qualifier is used. */ unsigned post_depth_coverage:1; + /** + * Flag set if GL_INTEL_conservartive_rasterization layout qualifier + * is used. + */ + unsigned inner_coverage:1; } /** \brief Set of flags, accessed by name. */ q; |