mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 15:40:11 +01:00
intel/brw/xe3+: Don't compile SIMD32 if there is ray queries
Signed-off-by: Sagar Ghuge <sagar.ghuge@intel.com> Reviewed-by: Francisco Jerez <currojerez@riseup.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32664>
This commit is contained in:
parent
5b6906076e
commit
7e1362e9c0
1 changed files with 2 additions and 1 deletions
|
|
@ -1693,7 +1693,8 @@ brw_compile_fs(const struct brw_compiler *compiler,
|
|||
|
||||
if ((!vbase || vbase->dispatch_width < 32) &&
|
||||
max_dispatch_width >= 32 &&
|
||||
INTEL_SIMD(FS, 32)) {
|
||||
INTEL_SIMD(FS, 32) &&
|
||||
!prog_data->base.ray_queries) {
|
||||
/* Try a SIMD32 compile */
|
||||
v32 = std::make_unique<fs_visitor>(compiler, ¶ms->base, key,
|
||||
prog_data, nir, 32, 1,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue