svga: set no_integers

for vgpu9 but not 10

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Reviewed-by: Georg Lehmann <dadschoorse@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30934>
This commit is contained in:
Alyssa Rosenzweig
2024-09-06 14:35:57 -04:00
committed by Marge Bot
parent 4b95fb2988
commit a52f606647
+2
View File
@@ -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 = {