mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-04 10:40:36 +01:00
intel/compiler/xe2: fix decoding of sampler simd mode
Reviewed-by: José Roberto de Souza <jose.souza@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28191>
This commit is contained in:
parent
4df58ef503
commit
2ad4d5f8dd
1 changed files with 3 additions and 1 deletions
|
|
@ -2151,7 +2151,9 @@ brw_disassemble_inst(FILE *file, const struct brw_isa_info *isa,
|
|||
err |= control(file, "sampler message", gfx5_sampler_msg_type,
|
||||
brw_sampler_desc_msg_type(devinfo, imm_desc),
|
||||
&space);
|
||||
err |= control(file, "sampler simd mode", gfx5_sampler_simd_mode,
|
||||
err |= control(file, "sampler simd mode",
|
||||
devinfo->ver >= 20 ? xe2_sampler_simd_mode :
|
||||
gfx5_sampler_simd_mode,
|
||||
brw_sampler_desc_simd_mode(devinfo, imm_desc),
|
||||
&space);
|
||||
if (brw_sampler_desc_return_format(devinfo, imm_desc)) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue