mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2025-04-05 09:00:51 +00:00
added a "Pipelines" tab to the "Direct3D 12 RHI" GUI
This commit is contained in:
parent
6cdd18157b
commit
798c17c630
1 changed files with 57 additions and 0 deletions
|
@ -3117,6 +3117,62 @@ namespace RHI
|
|||
}
|
||||
}
|
||||
|
||||
static void DrawPipelines()
|
||||
{
|
||||
if(ImGui::Button("Print in console"))
|
||||
{
|
||||
int i = 0;
|
||||
Pipeline* pipeline;
|
||||
HPipeline hpipeline;
|
||||
while(rhi.pipelines.FindNext(&pipeline, &hpipeline, &i))
|
||||
{
|
||||
char type;
|
||||
const char* name;
|
||||
if(pipeline->type == PipelineType::Compute)
|
||||
{
|
||||
type = 'C';
|
||||
name = pipeline->computeDesc.name;
|
||||
}
|
||||
else
|
||||
{
|
||||
type = 'G';
|
||||
name = pipeline->graphicsDesc.name;
|
||||
}
|
||||
Com_Printf("%c: %s\n", type, name);
|
||||
}
|
||||
}
|
||||
ImGui::NewLine();
|
||||
|
||||
static char filter[256];
|
||||
if(ImGui::Button("Clear filter"))
|
||||
{
|
||||
filter[0] = '\0';
|
||||
}
|
||||
ImGui::SameLine();
|
||||
ImGui::InputText(" ", filter, ARRAY_LEN(filter));
|
||||
|
||||
if(BeginTable("Pipelines", 2))
|
||||
{
|
||||
TableHeader(2, "Type", "Name");
|
||||
|
||||
int i = 0;
|
||||
Pipeline* pipeline;
|
||||
HPipeline hpipeline;
|
||||
while(rhi.pipelines.FindNext(&pipeline, &hpipeline, &i))
|
||||
{
|
||||
const char* const name = pipeline->type == PipelineType::Compute ? pipeline->computeDesc.name : pipeline->graphicsDesc.name;
|
||||
if(filter[0] != '\0' && !Com_Filter(filter, name))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
const char* const type = pipeline->type == PipelineType::Compute ? "Compute" : "Graphics";
|
||||
TableRow(2, type, name);
|
||||
}
|
||||
|
||||
ImGui::EndTable();
|
||||
}
|
||||
}
|
||||
|
||||
typedef void (*UICallback)();
|
||||
|
||||
static void DrawSection(const char* name, UICallback callback)
|
||||
|
@ -3143,6 +3199,7 @@ namespace RHI
|
|||
DrawSection("Caps", &DrawCaps);
|
||||
DrawSection("Textures", &DrawTextures);
|
||||
DrawSection("Buffers", &DrawBuffers);
|
||||
DrawSection("Pipelines", &DrawPipelines);
|
||||
ImGui::EndTabBar();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue