summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2022-07-22 18:04:17 -0700
committerGravatar GitHub2022-07-22 18:04:17 -0700
commitd60b0e8655fb0b1af4094dea80ef665a11a37406 (patch)
tree1c03feb9065c82a63a40f67bbf1665784770b8d7 /src
parentMerge pull request #8624 from lat9nq/vcpkg (diff)
parentvideo_core: use correct byte size for framebuffer (diff)
downloadyuzu-d60b0e8655fb0b1af4094dea80ef665a11a37406.tar.gz
yuzu-d60b0e8655fb0b1af4094dea80ef665a11a37406.tar.xz
yuzu-d60b0e8655fb0b1af4094dea80ef665a11a37406.zip
Merge pull request #8611 from liamwhite/fix-flatpak-crash
video_core: use correct byte size for framebuffer
Diffstat (limited to 'src')
-rw-r--r--src/video_core/renderer_vulkan/vk_blit_screen.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/video_core/renderer_vulkan/vk_blit_screen.cpp b/src/video_core/renderer_vulkan/vk_blit_screen.cpp
index 1ec8392e1..4a1d96322 100644
--- a/src/video_core/renderer_vulkan/vk_blit_screen.cpp
+++ b/src/video_core/renderer_vulkan/vk_blit_screen.cpp
@@ -87,8 +87,12 @@ u32 GetBytesPerPixel(const Tegra::FramebufferConfig& framebuffer) {
87} 87}
88 88
89std::size_t GetSizeInBytes(const Tegra::FramebufferConfig& framebuffer) { 89std::size_t GetSizeInBytes(const Tegra::FramebufferConfig& framebuffer) {
90 return static_cast<std::size_t>(framebuffer.stride) * 90 // TODO(Rodrigo): Read this from HLE
91 static_cast<std::size_t>(framebuffer.height) * GetBytesPerPixel(framebuffer); 91 constexpr u32 block_height_log2 = 4;
92 const u32 bytes_per_pixel = GetBytesPerPixel(framebuffer);
93 const u64 size_bytes{Tegra::Texture::CalculateSize(
94 true, bytes_per_pixel, framebuffer.stride, framebuffer.height, 1, block_height_log2, 0)};
95 return size_bytes;
92} 96}
93 97
94VkFormat GetFormat(const Tegra::FramebufferConfig& framebuffer) { 98VkFormat GetFormat(const Tegra::FramebufferConfig& framebuffer) {
@@ -169,9 +173,8 @@ VkSemaphore BlitScreen::Draw(const Tegra::FramebufferConfig& framebuffer,
169 // TODO(Rodrigo): Read this from HLE 173 // TODO(Rodrigo): Read this from HLE
170 constexpr u32 block_height_log2 = 4; 174 constexpr u32 block_height_log2 = 4;
171 const u32 bytes_per_pixel = GetBytesPerPixel(framebuffer); 175 const u32 bytes_per_pixel = GetBytesPerPixel(framebuffer);
172 const u64 size_bytes{Tegra::Texture::CalculateSize(true, bytes_per_pixel, 176 const u64 size_bytes{GetSizeInBytes(framebuffer)};
173 framebuffer.stride, framebuffer.height, 177
174 1, block_height_log2, 0)};
175 Tegra::Texture::UnswizzleTexture( 178 Tegra::Texture::UnswizzleTexture(
176 mapped_span.subspan(image_offset, size_bytes), std::span(host_ptr, size_bytes), 179 mapped_span.subspan(image_offset, size_bytes), std::span(host_ptr, size_bytes),
177 bytes_per_pixel, framebuffer.width, framebuffer.height, 1, block_height_log2, 0); 180 bytes_per_pixel, framebuffer.width, framebuffer.height, 1, block_height_log2, 0);