qrenderdoc: Show currently selected event in the API inspector

Currently, selecting an event with children (e.g. vkCmdExecuteCommands)
in the event browser will cause the API inspector window to show the
final child event, rather than the event itself. This behaviour makes
sense everywhere else: selecting an event with children shows the state
after all children have completed.

However, for the API inspector, we want to be able see API calls for
the parent event when it is selected rather than those of its last
child, particularly in the case of vkCmdExecuteCommands which may have
other API calls leading up to it.

To allow this, distinguish between the "current event" and "selected
event". For an event with children, the former refers to the last
child, while the latter refers to the event itself. ILogViewerForm now
has two separate event callbacks for when either one changes.

The API inspector now makes use of the selected event, while everything
else continues to use the current event.
This commit is contained in:
Alex Smith
2017-01-13 12:04:28 +00:00
committed by Baldur Karlsson
parent ba30bc0a57
commit 6e2fc42cbd
24 changed files with 83 additions and 51 deletions
+2 -2
View File
@@ -59,7 +59,7 @@ void APIInspector::OnLogfileClosed()
ui->callstack->clear();
}
void APIInspector::OnEventSelected(uint32_t eventID)
void APIInspector::OnSelectedEventChanged(uint32_t eventID)
{
ui->apiEvents->clearSelection();
@@ -116,7 +116,7 @@ void APIInspector::fillAPIView()
QRegularExpression rgxopen("^\\s*{");
QRegularExpression rgxclose("^\\s*}");
const FetchDrawcall *draw = m_Ctx->CurDrawcall();
const FetchDrawcall *draw = m_Ctx->CurSelectedDrawcall();
if(draw != NULL && draw->events.count > 0)
{