mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 04:20:08 +01:00
i965/fs: Hook up SIMD lowering to unroll surface instructions of unsupported width.
Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
This commit is contained in:
parent
7a594a95a9
commit
086d29f4d7
1 changed files with 5 additions and 0 deletions
|
|
@ -4073,6 +4073,11 @@ get_lowered_simd_width(const struct brw_device_info *devinfo,
|
|||
else
|
||||
return inst->exec_size;
|
||||
|
||||
case SHADER_OPCODE_TYPED_ATOMIC_LOGICAL:
|
||||
case SHADER_OPCODE_TYPED_SURFACE_READ_LOGICAL:
|
||||
case SHADER_OPCODE_TYPED_SURFACE_WRITE_LOGICAL:
|
||||
return 8;
|
||||
|
||||
default:
|
||||
return inst->exec_size;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue