From e885d52ad0a59e58db7f69c233885a91fc29bdfa Mon Sep 17 00:00:00 2001 From: squidbus <175574877+squidbus@users.noreply.github.com> Date: Tue, 9 Sep 2025 04:48:12 -0700 Subject: [PATCH] vk_pipeline_cache: Fix pipeline log class. (#3560) --- src/video_core/renderer_vulkan/vk_pipeline_cache.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp index 31337da42..89b48f0e4 100644 --- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp @@ -275,7 +275,7 @@ const GraphicsPipeline* PipelineCache::GetGraphicsPipeline() { const auto [it, is_new] = graphics_pipelines.try_emplace(graphics_key); if (is_new) { const auto pipeline_hash = std::hash{}(graphics_key); - LOG_INFO(Render, "Compiling graphics pipeline {:#x}", pipeline_hash); + LOG_INFO(Render_Vulkan, "Compiling graphics pipeline {:#x}", pipeline_hash); it.value() = std::make_unique(instance, scheduler, desc_heap, profile, graphics_key, *pipeline_cache, infos, @@ -299,7 +299,7 @@ const ComputePipeline* PipelineCache::GetComputePipeline() { const auto [it, is_new] = compute_pipelines.try_emplace(compute_key); if (is_new) { const auto pipeline_hash = std::hash{}(compute_key); - LOG_INFO(Render, "Compiling compute pipeline {:#x}", pipeline_hash); + LOG_INFO(Render_Vulkan, "Compiling compute pipeline {:#x}", pipeline_hash); it.value() = std::make_unique(instance, scheduler, desc_heap, profile,