From 42c7c895221aa9f1736e4a2267fc309d0e9ad543 Mon Sep 17 00:00:00 2001 From: squidbus <175574877+squidbus@users.noreply.github.com> Date: Sat, 5 Oct 2024 15:42:58 -0700 Subject: [PATCH] shader_recompiler: Remove outdated image array warning. (#1256) --- src/shader_recompiler/frontend/translate/vector_memory.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/shader_recompiler/frontend/translate/vector_memory.cpp b/src/shader_recompiler/frontend/translate/vector_memory.cpp index 35de75958..0419f7628 100644 --- a/src/shader_recompiler/frontend/translate/vector_memory.cpp +++ b/src/shader_recompiler/frontend/translate/vector_memory.cpp @@ -602,10 +602,6 @@ void Translator::IMAGE_SAMPLE(const GcnInst& inst) { void Translator::IMAGE_GATHER(const GcnInst& inst) { const auto& mimg = inst.control.mimg; - if (mimg.da) { - LOG_WARNING(Render_Vulkan, "Image instruction declares an array"); - } - IR::VectorReg addr_reg{inst.src[0].code}; IR::VectorReg dest_reg{inst.dst[0].code}; const IR::ScalarReg tsharp_reg{inst.src[2].code * 4};