added a "Pipelines" tab to the "Direct3D 12 RHI" GUI

This commit is contained in:
myT 2024-11-04 03:04:08 +01:00
parent 6cdd18157b
commit 798c17c630

View file

@ -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();
}
}