mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
ac/nir/cdna: ignore image_descriptor intrinsics
Fixes: 30af861bff - radeonsi: restructure (rewrite) the compute blit shader
Acked-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29852>
This commit is contained in:
parent
fec0a9fcdf
commit
8023e89d11
1 changed files with 6 additions and 0 deletions
|
|
@ -343,6 +343,12 @@ static bool lower_image_opcodes(nir_builder *b, nir_instr *instr, void *data)
|
|||
32, intr->src[0].ssa);
|
||||
break;
|
||||
|
||||
/* These don't need any lowering. */
|
||||
case nir_intrinsic_image_descriptor_amd:
|
||||
case nir_intrinsic_image_deref_descriptor_amd:
|
||||
case nir_intrinsic_bindless_image_descriptor_amd:
|
||||
return false;
|
||||
|
||||
default:
|
||||
intr_name = nir_intrinsic_infos[intr->intrinsic].name;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue