Change DXIL UAV out of bounds or null write to be a warning not error

This commit is contained in:
Jake Turner
2025-10-07 14:03:10 +01:00
parent cb83fac970
commit 5b47b73f4d
+2 -2
View File
@@ -3582,8 +3582,8 @@ bool ThreadState::ExecuteInstruction(const rdcarray<ThreadState> &workgroup)
// NULL resource or out of bounds
if((!texData && elemIdx >= numElems) || (texData && dataOffset >= dataSize))
{
RDCERR("Ignoring store to unbound resource or out of bounds store %s",
GetArgumentName(1).c_str());
RDCWARN("Ignoring store to unbound resource or out of bounds store %s",
GetArgumentName(1).c_str());
}
else
{