diff --git a/code/renderer/rhi_d3d12.cpp b/code/renderer/rhi_d3d12.cpp index 90e19a3..ec0a79d 100644 --- a/code/renderer/rhi_d3d12.cpp +++ b/code/renderer/rhi_d3d12.cpp @@ -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(); } }