1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-01 19:29:16 +01:00

[dxbc] Remove obsolete error message when resinfo is used with UAVs

This commit is contained in:
Philip Rebohle 2018-01-27 22:15:53 +01:00
parent 2e1e8d56a5
commit 6f51c136d2
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -2170,11 +2170,6 @@ namespace dxvk {
const DxbcBufferInfo resourceInfo = getBufferInfo(ins.src[1]);
const DxbcResinfoType resinfoType = ins.controls.resinfoType;
if (ins.src[1].type != DxbcOperandType::Resource) {
Logger::err("DxbcCompiler: resinfo: UAVs not yet supported");
return;
}
// Read the exact LOD for the image query
const DxbcRegisterValue mipLod = emitRegisterLoad(
ins.src[0], DxbcRegMask(true, false, false, false));