From a52f6066477918c0070b80b2ad8cabc720e60ec6 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 6 Sep 2024 14:35:57 -0400 Subject: [PATCH] svga: set no_integers for vgpu9 but not 10 Signed-off-by: Alyssa Rosenzweig Reviewed-by: Georg Lehmann Part-of: --- src/gallium/drivers/svga/svga_screen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/drivers/svga/svga_screen.c b/src/gallium/drivers/svga/svga_screen.c index d007957209f..f1054435e22 100644 --- a/src/gallium/drivers/svga/svga_screen.c +++ b/src/gallium/drivers/svga/svga_screen.c @@ -736,6 +736,7 @@ static const nir_shader_compiler_options svga_vgpu9_fragment_compiler_options = .lower_bitops = true, .force_indirect_unrolling = nir_var_all, .force_indirect_unrolling_sampler = true, + .no_integers = true, }; static const nir_shader_compiler_options svga_vgpu9_vertex_compiler_options = { @@ -743,6 +744,7 @@ static const nir_shader_compiler_options svga_vgpu9_vertex_compiler_options = { .lower_bitops = true, .force_indirect_unrolling = nir_var_function_temp, .force_indirect_unrolling_sampler = true, + .no_integers = true, }; static const nir_shader_compiler_options svga_vgpu10_compiler_options = {