summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-11-07 17:52:45 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2022-10-06 21:00:51 +0200
commit3f8e7a55851a613becf715cbf3016a8e9f63d65f (patch)
tree6b42cdddda0fb26fd0241ae2def28416179c3d51 /src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
parentOpenGl: Implement Channels. (diff)
downloadyuzu-3f8e7a55851a613becf715cbf3016a8e9f63d65f.tar
yuzu-3f8e7a55851a613becf715cbf3016a8e9f63d65f.tar.gz
yuzu-3f8e7a55851a613becf715cbf3016a8e9f63d65f.tar.bz2
yuzu-3f8e7a55851a613becf715cbf3016a8e9f63d65f.tar.lz
yuzu-3f8e7a55851a613becf715cbf3016a8e9f63d65f.tar.xz
yuzu-3f8e7a55851a613becf715cbf3016a8e9f63d65f.tar.zst
yuzu-3f8e7a55851a613becf715cbf3016a8e9f63d65f.zip
Diffstat (limited to 'src/video_core/renderer_vulkan/vk_pipeline_cache.cpp')
-rw-r--r--src/video_core/renderer_vulkan/vk_pipeline_cache.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
index b1e0b96c4..732e7b6f2 100644
--- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
+++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
@@ -555,10 +555,10 @@ std::unique_ptr<GraphicsPipeline> PipelineCache::CreateGraphicsPipeline(
previous_stage = &program;
}
Common::ThreadWorker* const thread_worker{build_in_parallel ? &workers : nullptr};
- return std::make_unique<GraphicsPipeline>(
- *maxwell3d, *gpu_memory, scheduler, buffer_cache, texture_cache, &shader_notify, device,
- descriptor_pool, update_descriptor_queue, thread_worker, statistics, render_pass_cache, key,
- std::move(modules), infos);
+ return std::make_unique<GraphicsPipeline>(scheduler, buffer_cache, texture_cache,
+ &shader_notify, device, descriptor_pool,
+ update_descriptor_queue, thread_worker, statistics,
+ render_pass_cache, key, std::move(modules), infos);
} catch (const Shader::Exception& exception) {
LOG_ERROR(Render_Vulkan, "{}", exception.what());