diff options
author | Anuj Phogat <[email protected]> | 2017-02-10 13:43:57 -0800 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2017-02-13 16:08:40 -0800 |
commit | 5e2909e732aaccfa2e26745dd6f32e9dc266dd5d (patch) | |
tree | a6e348acd6032001542a8a6459dbebdf5ca93373 /src/compiler/glsl/glsl_parser_extras.h | |
parent | b3b4114a0f57c78fc6b9b58f4a8249292adba382 (diff) |
mesa: Add EXT_frag_depth bits and enable it on all drivers
Passes the newly added piglit test for this extension on i965.
V2: Fix comments by Ilia.
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/compiler/glsl/glsl_parser_extras.h')
-rw-r--r-- | src/compiler/glsl/glsl_parser_extras.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/glsl/glsl_parser_extras.h b/src/compiler/glsl/glsl_parser_extras.h index 66a954f880b..9f4a309ca21 100644 --- a/src/compiler/glsl/glsl_parser_extras.h +++ b/src/compiler/glsl/glsl_parser_extras.h @@ -741,6 +741,8 @@ struct _mesa_glsl_parse_state { bool EXT_clip_cull_distance_warn; bool EXT_draw_buffers_enable; bool EXT_draw_buffers_warn; + bool EXT_frag_depth_enable; + bool EXT_frag_depth_warn; bool EXT_geometry_point_size_enable; bool EXT_geometry_point_size_warn; bool EXT_geometry_shader_enable; |