Change previous/next/parent IDs in DrawcallDescription to pointers

* This is a legacy holdover from the C# interop not being able to preserve
  pointers easily.
This commit is contained in:
baldurk
2018-06-18 18:29:46 +01:00
parent f919ea81e2
commit 0dda96a045
25 changed files with 307 additions and 309 deletions
+2 -2
View File
@@ -199,11 +199,11 @@ public:
QString ret;
QList<const DrawcallDescription *> drawstack;
const DrawcallDescription *parent = m_Ctx.GetDrawcall(drawcall->parent);
const DrawcallDescription *parent = drawcall->parent;
while(parent)
{
drawstack.push_back(parent);
parent = m_Ctx.GetDrawcall(parent->parent);
parent = parent->parent;
}
if(!drawstack.isEmpty())