mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 10:00:40 +00:00
Change DXIL UAV out of bounds or null write to be a warning not error
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user