summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/blit_image.h
diff options
context:
space:
mode:
authorSquall-Leonhart <danialhorton@hotmail.com>2023-10-04 10:07:05 +0200
committerSquall-Leonhart <danialhorton@hotmail.com>2023-10-04 10:07:05 +0200
commit9568d3bc60c428cd7e13ef67cc50cfdbdc7a7c8f (patch)
treebf75fb999488b2924da7c03b60dac5e880e54f30 /src/video_core/renderer_vulkan/blit_image.h
parentMerge pull request #11657 from liamwhite/new-codespell (diff)
downloadyuzu-9568d3bc60c428cd7e13ef67cc50cfdbdc7a7c8f.tar
yuzu-9568d3bc60c428cd7e13ef67cc50cfdbdc7a7c8f.tar.gz
yuzu-9568d3bc60c428cd7e13ef67cc50cfdbdc7a7c8f.tar.bz2
yuzu-9568d3bc60c428cd7e13ef67cc50cfdbdc7a7c8f.tar.lz
yuzu-9568d3bc60c428cd7e13ef67cc50cfdbdc7a7c8f.tar.xz
yuzu-9568d3bc60c428cd7e13ef67cc50cfdbdc7a7c8f.tar.zst
yuzu-9568d3bc60c428cd7e13ef67cc50cfdbdc7a7c8f.zip
Diffstat (limited to '')
-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 dcfe217aa..a032c71fb 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 ConvertD32FToABGR8(const Framebuffer* dst_framebuffer, ImageView& src_image_view);
+
void ConvertD24S8ToABGR8(const Framebuffer* dst_framebuffer, ImageView& src_image_view);
void ConvertS8D24ToABGR8(const Framebuffer* dst_framebuffer, ImageView& src_image_view);
@@ -128,6 +130,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_d32f_to_abgr8_frag;
vk::ShaderModule convert_d24s8_to_abgr8_frag;
vk::ShaderModule convert_s8d24_to_abgr8_frag;
vk::Sampler linear_sampler;
@@ -146,6 +149,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_d32f_to_abgr8_pipeline;
vk::Pipeline convert_d24s8_to_abgr8_pipeline;
vk::Pipeline convert_s8d24_to_abgr8_pipeline;
};