Browse Source

More error fixes

pull/3737/head
Forrest Mark X 2 weeks ago
committed by crueter
parent
commit
de08023ba8
  1. 2
      src/video_core/renderer_vulkan/vk_texture_cache.cpp

2
src/video_core/renderer_vulkan/vk_texture_cache.cpp

@ -986,7 +986,7 @@ TextureCacheRuntime::TextureCacheRuntime(const Device& device_, Scheduler& sched
}
}
[nodiscard] bool ByteWidthSupported(u32 bpp, const Device& device) {
[[nodiscard]] bool ByteWidthSupported(u32 bpp, const Device& device) {
switch (bpp) {
case 1:
return device.IsStorageBuffer8BitAccessSupported();

Loading…
Cancel
Save