summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2016-04-03 23:03:34 -0700
committerKenneth Graunke <[email protected]>2016-05-17 14:27:29 -0700
commit9a1936d965e92c4b4aa682f96ef63362159f4fce (patch)
treeccc0727f271a82d0bb0f53c24bc7514e8e5262a5 /src
parent1ff212bfd3d533f03f91a18a98cca0a2637c6d79 (diff)
i965: Enable ES 3.2 sample shading extensions.
This enables: - GL_OES_sample_shading - GL_OES_sample_variables - GL_OES_shader_multisample_interpolation On Gen8, we pass all the CTS tests, and all but 4 of the dEQP-GLES31 tests (dealing with 1x/2x MSAA at half rate sampling). We believe those 4 dEQP-GLES31 tests are incorrect. Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/i965/intel_extensions.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_extensions.c b/src/mesa/drivers/dri/i965/intel_extensions.c
index 8b4f6853bf7..878bd84fea3 100644
--- a/src/mesa/drivers/dri/i965/intel_extensions.c
+++ b/src/mesa/drivers/dri/i965/intel_extensions.c
@@ -311,6 +311,7 @@ intelInitExtensions(struct gl_context *ctx)
ctx->Extensions.EXT_framebuffer_multisample_blit_scaled = true;
ctx->Extensions.EXT_transform_feedback = true;
ctx->Extensions.OES_depth_texture_cube_map = true;
+ ctx->Extensions.OES_sample_variables = true;
ctx->Extensions.ARB_timer_query = brw->intelScreen->hw_has_timestamp;