mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-25 16:06:31 +00:00
DXIL Disassembly always show the Buffer index for Store operations
i.e.
bufOut[0] = {_18};
*(&bufOut[0] + 8 bytes) = {_35};
This commit is contained in:
@@ -3399,8 +3399,7 @@ void Program::MakeRDDisassemblyString(const DXBC::Reflection *reflection)
|
||||
uint32_t index;
|
||||
if(getival(inst.args[2], index))
|
||||
{
|
||||
if((offset == 0) || (index > 0))
|
||||
arrayStr += "[" + ToStr(index) + "]";
|
||||
arrayStr += "[" + ToStr(index) + "]";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user