From 0bb072b42bb8a2a7e8043557d949f1bd25842912 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Mon, 22 Sep 2014 03:10:34 -0700 Subject: [PATCH] i965/skl: Init instructions compaction tables for SKL MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit They are the same as for BDW, so just add a case for SKL to the init switch. Signed-off-by: Kristian Høgsberg Reviewed-by: Kenneth Graunke --- src/mesa/drivers/dri/i965/brw_eu_compact.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/drivers/dri/i965/brw_eu_compact.c b/src/mesa/drivers/dri/i965/brw_eu_compact.c index e660ad340b8..97dc368971f 100644 --- a/src/mesa/drivers/dri/i965/brw_eu_compact.c +++ b/src/mesa/drivers/dri/i965/brw_eu_compact.c @@ -1265,6 +1265,7 @@ brw_init_compaction_tables(struct brw_context *brw) assert(gen8_src_index_table[ARRAY_SIZE(gen8_src_index_table) - 1] != 0); switch (brw->gen) { + case 9: case 8: control_index_table = gen8_control_index_table; datatype_table = gen8_datatype_table; -- 2.30.2