shader_recompiler: Remove outdated image array warning. (#1256)

This commit is contained in:
squidbus 2024-10-05 15:42:58 -07:00 committed by GitHub
parent 927bb0c175
commit 2a7d56dbf2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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};