aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2018-04-18 14:06:27 -0700
committerIan Romanick <[email protected]>2018-08-22 20:31:32 -0700
commit59c17dbc6c1906d399b1c1af851610e5862774a8 (patch)
tree724be8d63080ec559ea92fc3e89ba1103c3f6f6e
parentd515c75463824759f983304242178ed29f98ed3d (diff)
i965: Sort Gen9+ extension enables
This is a strictly alphabetic sort, as is done in extensions_table.h There are other options. We should pick one and document it. Right now, this file is chaos. Signed-off-by: Ian Romanick <[email protected]> Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
-rw-r--r--src/mesa/drivers/dri/i965/intel_extensions.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_extensions.c b/src/mesa/drivers/dri/i965/intel_extensions.c
index f1c3aeff135..a78bd8e5b0e 100644
--- a/src/mesa/drivers/dri/i965/intel_extensions.c
+++ b/src/mesa/drivers/dri/i965/intel_extensions.c
@@ -302,13 +302,13 @@ intelInitExtensions(struct gl_context *ctx)
if (devinfo->gen >= 9) {
ctx->Extensions.ANDROID_extension_pack_es31a = true;
+ ctx->Extensions.ARB_post_depth_coverage = true;
ctx->Extensions.ARB_shader_stencil_export = true;
+ ctx->Extensions.EXT_shader_framebuffer_fetch = true;
+ ctx->Extensions.INTEL_conservative_rasterization = true;
ctx->Extensions.KHR_blend_equation_advanced_coherent = true;
ctx->Extensions.KHR_texture_compression_astc_ldr = true;
ctx->Extensions.KHR_texture_compression_astc_sliced_3d = true;
- ctx->Extensions.INTEL_conservative_rasterization = true;
- ctx->Extensions.EXT_shader_framebuffer_fetch = true;
- ctx->Extensions.ARB_post_depth_coverage = true;
}
if (gen_device_info_is_9lp(devinfo))