From ab81e4bd5150a7d41dae7b3641a178a20620a817 Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Mon, 8 Sep 2025 17:57:09 +0200 Subject: [PATCH] vulkan: fix out pipeline cache --- src/gfx_apis/vulkan/renderer.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gfx_apis/vulkan/renderer.rs b/src/gfx_apis/vulkan/renderer.rs index 2d63478d..6c1f6455 100644 --- a/src/gfx_apis/vulkan/renderer.rs +++ b/src/gfx_apis/vulkan/renderer.rs @@ -260,6 +260,7 @@ pub(super) struct TexPipelines { pub(super) struct OutPipelineKey { format: vk::Format, eotf: Eotf, + has_color_management_data: bool, } impl VulkanDevice { @@ -508,6 +509,7 @@ impl VulkanRenderer { let key = OutPipelineKey { format, eotf: bb_cd.eotf, + has_color_management_data, }; let pipelines = &self.out_pipelines[fb_cd.eotf]; if let Some(pl) = pipelines.get(&key) {