summaryrefslogtreecommitdiff
path: root/src/video_core/renderer_vulkan
diff options
context:
space:
mode:
authorGravatar bunnei2021-11-18 11:30:47 -0800
committerGravatar GitHub2021-11-18 11:30:47 -0800
commit0bc46fedd617f6a42c53716680ed99d8f42bf99a (patch)
treeaec333a588d638492cca77d7814cdc5379d2b6c0 /src/video_core/renderer_vulkan
parentMerge pull request #7353 from v1993/no-more-epilepsy (diff)
parentgl_texture_cache: Round format conversion PBO to next power of 2 (diff)
downloadyuzu-0bc46fedd617f6a42c53716680ed99d8f42bf99a.tar.gz
yuzu-0bc46fedd617f6a42c53716680ed99d8f42bf99a.tar.xz
yuzu-0bc46fedd617f6a42c53716680ed99d8f42bf99a.zip
Merge pull request #7349 from ameerj/ogl-convert-image
gl_texture_cache: Implement pixel format conversions for copies
Diffstat (limited to 'src/video_core/renderer_vulkan')
-rw-r--r--src/video_core/renderer_vulkan/vk_texture_cache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/renderer_vulkan/vk_texture_cache.h b/src/video_core/renderer_vulkan/vk_texture_cache.h
index ff28b4e96..f5f8f9a74 100644
--- a/src/video_core/renderer_vulkan/vk_texture_cache.h
+++ b/src/video_core/renderer_vulkan/vk_texture_cache.h
@@ -316,6 +316,7 @@ struct TextureCacheParams {
316 static constexpr bool FRAMEBUFFER_BLITS = false; 316 static constexpr bool FRAMEBUFFER_BLITS = false;
317 static constexpr bool HAS_EMULATED_COPIES = false; 317 static constexpr bool HAS_EMULATED_COPIES = false;
318 static constexpr bool HAS_DEVICE_MEMORY_INFO = true; 318 static constexpr bool HAS_DEVICE_MEMORY_INFO = true;
319 static constexpr bool HAS_PIXEL_FORMAT_CONVERSIONS = false;
319 320
320 using Runtime = Vulkan::TextureCacheRuntime; 321 using Runtime = Vulkan::TextureCacheRuntime;
321 using Image = Vulkan::Image; 322 using Image = Vulkan::Image;