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/glsl_parser_extras.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/glsl_parser_extras.h')
-rw-r--r-- | src/compiler/glsl/glsl_parser_extras.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compiler/glsl/glsl_parser_extras.h b/src/compiler/glsl/glsl_parser_extras.h index 4277d43aa72..d6fc37777e4 100644 --- a/src/compiler/glsl/glsl_parser_extras.h +++ b/src/compiler/glsl/glsl_parser_extras.h @@ -761,6 +761,8 @@ struct _mesa_glsl_parse_state { bool EXT_texture_buffer_warn; bool EXT_texture_cube_map_array_enable; bool EXT_texture_cube_map_array_warn; + bool INTEL_conservative_rasterization_enable; + bool INTEL_conservative_rasterization_warn; bool MESA_shader_framebuffer_fetch_enable; bool MESA_shader_framebuffer_fetch_warn; bool MESA_shader_framebuffer_fetch_non_coherent_enable; @@ -788,6 +790,8 @@ struct _mesa_glsl_parse_state { bool fs_early_fragment_tests; + bool fs_inner_coverage; + bool fs_post_depth_coverage; unsigned fs_blend_support; |