Treat vectors of size one as scalars for DXIL debug mapping

This commit is contained in:
Jake Turner
2025-11-12 05:50:58 +13:00
parent 637626638c
commit 61262d26f1
+1 -1
View File
@@ -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];