diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2021-07-03 09:07:50 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:40 +0200 |
commit | 55233c2861a72bd777b75bce20c8d4e46c17a72f (patch) | |
tree | 5dab3183a43eed247f15a921dfb5d4056ddb69a3 /src | |
parent | vulkan_device: Blacklist ampere devices from float16 math (diff) | |
download | yuzu-55233c2861a72bd777b75bce20c8d4e46c17a72f.tar yuzu-55233c2861a72bd777b75bce20c8d4e46c17a72f.tar.gz yuzu-55233c2861a72bd777b75bce20c8d4e46c17a72f.tar.bz2 yuzu-55233c2861a72bd777b75bce20c8d4e46c17a72f.tar.lz yuzu-55233c2861a72bd777b75bce20c8d4e46c17a72f.tar.xz yuzu-55233c2861a72bd777b75bce20c8d4e46c17a72f.tar.zst yuzu-55233c2861a72bd777b75bce20c8d4e46c17a72f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/vulkan_common/vulkan_device.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 7d66a43e7..ceaee8a7e 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <algorithm> #include <bitset> #include <chrono> #include <optional> |