r600: set nir option lower_cs_local_index_to_id

Fixes:  7662a5e9d3
  mesa: Remove PIPE_CAP_CS_DERIVED_SYSTEM_VALUES_SUPPORTED/lower_cs_derived.

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18518>
This commit is contained in:
Gert Wollny 2022-09-09 14:55:59 +02:00 committed by Marge Bot
parent 36d050210e
commit d5394296be

View file

@ -1365,7 +1365,8 @@ bool r600_common_screen_init(struct r600_common_screen *rscreen,
.lower_to_scalar_filter = r600_lower_to_scalar_instr_filter,
.linker_ignore_precision = true,
.lower_fpow = true,
.lower_int64_options = ~0
.lower_int64_options = ~0,
.lower_cs_local_index_to_id = true
};
rscreen->nir_options = nir_options;