mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-28 17:36:36 +00:00
Rename 'name' member of ActionDescription to 'customName'
* This is a deliberate break of compatibility since the field is now often empty, for non-markers. This means code will get a more explicit error when the name is being referenced, so it can be updated to fetch the name it needs as needed.
This commit is contained in:
@@ -501,11 +501,12 @@ div.stage table tr td { border-right: 1px solid #AAAAAA; background-color: #EEEE
|
||||
|
||||
for(const ActionDescription *d : actionstack)
|
||||
{
|
||||
context += QFormatStr(" > %1").arg(d->name);
|
||||
context += QFormatStr(" > %1").arg(d->customName);
|
||||
}
|
||||
|
||||
if(action)
|
||||
context += QFormatStr(" => %1").arg(action->name);
|
||||
context +=
|
||||
QFormatStr(" => %1").arg(m_Ctx.GetEventBrowser()->GetEventName(action->eventId));
|
||||
else
|
||||
context += tr(" => Capture Start");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user