mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 09:30:44 +00:00
Treat vectors of size one as scalars for DXIL debug mapping
This commit is contained in:
@@ -8864,7 +8864,7 @@ void Debugger::ParseDebugData()
|
||||
usage->debugVarSuffix.clear();
|
||||
}
|
||||
}
|
||||
else if(typeWalk->vecSize != 0)
|
||||
else if(typeWalk->vecSize > 1)
|
||||
{
|
||||
// Index into the vector using byte offset and component size
|
||||
const TypeData &scalar = m_DebugInfo.types[typeWalk->baseType];
|
||||
|
||||
Reference in New Issue
Block a user