mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
intel/fs: Fix a typo in need_matching_subreg_offset
This fixes a bunch of Vulkan subgroup tests on little core platforms. Fixes:4150920b95"intel/fs: Add a helper for emitting scan operations" Reviewed-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com> Tested-by: Mark Janes <mark.a.janes@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> (cherry picked from commit7e7959fcb7)
This commit is contained in:
parent
285702582a
commit
4945b25d6f
1 changed files with 1 additions and 1 deletions
|
|
@ -795,7 +795,7 @@ namespace brw {
|
|||
!gen_device_info_is_9lp(shader->devinfo))
|
||||
return false;
|
||||
|
||||
if (type_sz(type > 4))
|
||||
if (type_sz(type) > 4)
|
||||
return true;
|
||||
|
||||
if (opcode == BRW_OPCODE_MUL &&
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue