diff options
author | Kristian Høgsberg <[email protected]> | 2014-09-22 03:10:34 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-11-03 15:32:59 -0800 |
commit | 0bb072b42bb8a2a7e8043557d949f1bd25842912 (patch) | |
tree | 3cb734835cc910e1ab0ee67d30d26a4c5a629f3e /src/mesa/drivers | |
parent | d235c5afde3b3de46601e2408a2f8002324b16be (diff) |
i965/skl: Init instructions compaction tables for SKL
They are the same as for BDW, so just add a case for SKL to the init switch.
Signed-off-by: Kristian Høgsberg <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu_compact.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |