mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
Allow renaming of a stage in the pipeline flowchart control
This commit is contained in:
@@ -89,6 +89,14 @@ namespace renderdocui.Controls
|
||||
Invalidate();
|
||||
}
|
||||
|
||||
public void SetStageName(int index, KeyValuePair<string, string> name)
|
||||
{
|
||||
if (index >= 0 && index < m_StageNames.Length)
|
||||
m_StageNames[index] = name;
|
||||
|
||||
Invalidate();
|
||||
}
|
||||
|
||||
public void IsolateStage(int index)
|
||||
{
|
||||
if (m_StageNames != null && index >= 0 && index < m_StageNames.Length)
|
||||
|
||||
Reference in New Issue
Block a user