Always emit debug vectors (including vectors inside matrices)

Even if only some of the elements are mapped, the UI will handle elements which are not mapped
This commit is contained in:
Jake Turner
2024-12-19 12:10:56 +00:00
parent 4121262581
commit 13fd0eb294
@@ -7162,6 +7162,7 @@ void Debugger::ParseDebugData()
for(uint32_t c = 0; c < columns; ++c)
usage->children[row].children[c].emitSourceVar = false;
}
usage->children[row].emitSourceVar = true;
}
}
else
@@ -7228,6 +7229,7 @@ void Debugger::ParseDebugData()
for(uint32_t c = 0; c < columns; ++c)
usage->children[r].children[c].emitSourceVar = false;
}
usage->children[r].emitSourceVar = true;
}
}
}
@@ -7295,6 +7297,7 @@ void Debugger::ParseDebugData()
for(uint32_t x = 0; x < columns; ++x)
usage->children[x].emitSourceVar = false;
}
usage->emitSourceVar = true;
}
else
{