summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/blit_image.h
diff options
context:
space:
mode:
authorFeng Chen <vonchenplus@gmail.com>2023-01-11 04:10:48 +0100
committerFeng Chen <vonchenplus@gmail.com>2023-01-16 03:27:57 +0100
commit9fc7ca1731862354ef70bfaf34d2c807a904a27b (patch)
tree5bdfbefc345364d74798de659225246319e56b1b /src/video_core/renderer_vulkan/blit_image.h
parentvideo_core: Implement opengl/vulkan draw_texture (diff)
downloadyuzu-9fc7ca1731862354ef70bfaf34d2c807a904a27b.tar
yuzu-9fc7ca1731862354ef70bfaf34d2c807a904a27b.tar.gz
yuzu-9fc7ca1731862354ef70bfaf34d2c807a904a27b.tar.bz2
yuzu-9fc7ca1731862354ef70bfaf34d2c807a904a27b.tar.lz
yuzu-9fc7ca1731862354ef70bfaf34d2c807a904a27b.tar.xz
yuzu-9fc7ca1731862354ef70bfaf34d2c807a904a27b.tar.zst
yuzu-9fc7ca1731862354ef70bfaf34d2c807a904a27b.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_vulkan/blit_image.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_vulkan/blit_image.h b/src/video_core/renderer_vulkan/blit_image.h
index e2db33f56..be8a9a2f6 100644
--- a/src/video_core/renderer_vulkan/blit_image.h
+++ b/src/video_core/renderer_vulkan/blit_image.h
@@ -39,8 +39,8 @@ public:
Tegra::Engines::Fermi2D::Operation operation);
void BlitColor(const Framebuffer* dst_framebuffer, VkImageView src_image_view,
- VkSampler src_sampler, const Region2D& dst_region, const Region2D& src_region,
- const Extent3D& src_size);
+ VkImage src_image, VkSampler src_sampler, const Region2D& dst_region,
+ const Region2D& src_region, const Extent3D& src_size);
void BlitDepthStencil(const Framebuffer* dst_framebuffer, VkImageView src_depth_view,
VkImageView src_stencil_view, const Region2D& dst_region,