diff options
| author | Lioncash <mathew1800@gmail.com> | 2016-09-30 23:07:50 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2016-09-30 23:26:03 -0400 |
| commit | 9395b8efa91fd5c7b20823d426699e058b9dae8c (patch) | |
| tree | 4f18a9c3cba9be9ec80248e6f1d49af25e831d69 /Source/Core/VideoBackends/Vulkan/ObjectCache.cpp | |
| parent | 46b9383280a623753686ab6df6c479e784e416ae (diff) | |
Vulkan: Amend header includes
Adds headers where necessary to eliminate indirect includes.
Also adds headers to ensure certain standard constructs always
resolve correctly
Diffstat (limited to 'Source/Core/VideoBackends/Vulkan/ObjectCache.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Vulkan/ObjectCache.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp b/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp index 89af5b7c53..6932830bfb 100644 --- a/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp +++ b/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp @@ -2,7 +2,10 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include "VideoBackends/Vulkan/ObjectCache.h" + #include <algorithm> +#include <sstream> #include <type_traits> #include <xxhash.h> @@ -10,7 +13,6 @@ #include "Common/LinearDiskCache.h" #include "Core/ConfigManager.h" -#include "VideoBackends/Vulkan/ObjectCache.h" #include "VideoBackends/Vulkan/ShaderCompiler.h" #include "VideoBackends/Vulkan/StreamBuffer.h" #include "VideoBackends/Vulkan/Util.h" |
