r600/sfn: Reduce array limit for scratch usage

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4609>
This commit is contained in:
Gert Wollny 2020-04-15 17:00:54 +02:00 committed by Marge Bot
parent 6fdc75d1c6
commit bc9cf6adff

View file

@ -625,7 +625,7 @@ int r600_shader_from_nir(struct r600_context *rctx,
NIR_PASS_V(sel->nir, nir_lower_vars_to_scratch,
nir_var_function_temp,
100,
40,
r600_get_natural_size_align_bytes);
while (optimize && optimize_once(sel->nir));