summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/blit_image.h
diff options
context:
space:
mode:
authorSquall-Leonhart <danialhorton@hotmail.com>2023-10-15 18:17:53 +0200
committerSquall-Leonhart <danialhorton@hotmail.com>2023-10-15 18:17:53 +0200
commitf40f65f5d2123c79ffa4c8587d20dada624b5047 (patch)
treeff28db65b491e718ef79b001426a5f8b53c49bdb /src/video_core/renderer_vulkan/blit_image.h
parentmissed this line when editing the copypasta (diff)
downloadyuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.tar
yuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.tar.gz
yuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.tar.bz2
yuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.tar.lz
yuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.tar.xz
yuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.tar.zst
yuzu-f40f65f5d2123c79ffa4c8587d20dada624b5047.zip
Diffstat (limited to 'src/video_core/renderer_vulkan/blit_image.h')
-rw-r--r--src/video_core/renderer_vulkan/blit_image.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/renderer_vulkan/blit_image.h b/src/video_core/renderer_vulkan/blit_image.h
index d083b4680..b3281ff3e 100644
--- a/src/video_core/renderer_vulkan/blit_image.h
+++ b/src/video_core/renderer_vulkan/blit_image.h
@@ -67,6 +67,8 @@ public:
void ConvertABGR8ToD24S8(const Framebuffer* dst_framebuffer, const ImageView& src_image_view);
+ void ConvertABGR8ToD32F(const Framebuffer* dst_framebuffer, const ImageView& src_image_view);
+
void ConvertD32FToABGR8(const Framebuffer* dst_framebuffer, ImageView& src_image_view);
void ConvertD24S8ToABGR8(const Framebuffer* dst_framebuffer, ImageView& src_image_view);
@@ -132,6 +134,7 @@ private:
vk::ShaderModule convert_depth_to_float_frag;
vk::ShaderModule convert_float_to_depth_frag;
vk::ShaderModule convert_abgr8_to_d24s8_frag;
+ vk::ShaderModule convert_abgr8_to_d32f_frag;
vk::ShaderModule convert_d32f_to_abgr8_frag;
vk::ShaderModule convert_d24s8_to_abgr8_frag;
vk::ShaderModule convert_s8d24_to_abgr8_frag;
@@ -152,6 +155,7 @@ private:
vk::Pipeline convert_d16_to_r16_pipeline;
vk::Pipeline convert_r16_to_d16_pipeline;
vk::Pipeline convert_abgr8_to_d24s8_pipeline;
+ vk::Pipeline convert_abgr8_to_d32f_pipeline;
vk::Pipeline convert_d32f_to_abgr8_pipeline;
vk::Pipeline convert_d24s8_to_abgr8_pipeline;
vk::Pipeline convert_s8d24_to_abgr8_pipeline;