summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Vulkan/PerfQuery.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-09-30 23:07:50 -0400
committerLioncash <mathew1800@gmail.com>2016-09-30 23:26:03 -0400
commit9395b8efa91fd5c7b20823d426699e058b9dae8c (patch)
tree4f18a9c3cba9be9ec80248e6f1d49af25e831d69 /Source/Core/VideoBackends/Vulkan/PerfQuery.cpp
parent46b9383280a623753686ab6df6c479e784e416ae (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/PerfQuery.cpp')
-rw-r--r--Source/Core/VideoBackends/Vulkan/PerfQuery.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/PerfQuery.cpp b/Source/Core/VideoBackends/Vulkan/PerfQuery.cpp
index 0ee31e3d00..2a64babb32 100644
--- a/Source/Core/VideoBackends/Vulkan/PerfQuery.cpp
+++ b/Source/Core/VideoBackends/Vulkan/PerfQuery.cpp
@@ -2,15 +2,17 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#include "VideoBackends/Vulkan/PerfQuery.h"
+
#include <algorithm>
#include <cstring>
#include <functional>
#include "Common/Assert.h"
+#include "Common/Logging/Log.h"
+#include "Common/MsgHandler.h"
#include "VideoBackends/Vulkan/CommandBufferManager.h"
-#include "VideoBackends/Vulkan/PerfQuery.h"
-#include "VideoBackends/Vulkan/Renderer.h"
#include "VideoBackends/Vulkan/StagingBuffer.h"
#include "VideoBackends/Vulkan/StateTracker.h"
#include "VideoBackends/Vulkan/Util.h"