summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2019-11-27 05:51:13 -0500
committerGravatar Lioncash2019-11-27 05:51:13 -0500
commit930e3115261aca06ce1a78b68b17637cc53b8582 (patch)
tree0890c687109f9562126a682e0cff43c4a6f5cf86
parentvideo_core/const_buffer_locker: Remove #pragma once from cpp file (diff)
downloadyuzu-930e3115261aca06ce1a78b68b17637cc53b8582.tar.gz
yuzu-930e3115261aca06ce1a78b68b17637cc53b8582.tar.xz
yuzu-930e3115261aca06ce1a78b68b17637cc53b8582.zip
video_core/const_buffer_locker: Remove unused includes
-rw-r--r--src/video_core/shader/const_buffer_locker.cpp3
-rw-r--r--src/video_core/shader/const_buffer_locker.h1
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/const_buffer_locker.cpp b/src/video_core/shader/const_buffer_locker.cpp
index 9adcd8163..5dce43b1f 100644
--- a/src/video_core/shader/const_buffer_locker.cpp
+++ b/src/video_core/shader/const_buffer_locker.cpp
@@ -3,8 +3,7 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <algorithm> 5#include <algorithm>
6#include <memory> 6
7#include "common/assert.h"
8#include "common/common_types.h" 7#include "common/common_types.h"
9#include "video_core/engines/maxwell_3d.h" 8#include "video_core/engines/maxwell_3d.h"
10#include "video_core/engines/shader_type.h" 9#include "video_core/engines/shader_type.h"
diff --git a/src/video_core/shader/const_buffer_locker.h b/src/video_core/shader/const_buffer_locker.h
index 50a8ce42a..d32e2d657 100644
--- a/src/video_core/shader/const_buffer_locker.h
+++ b/src/video_core/shader/const_buffer_locker.h
@@ -4,6 +4,7 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <optional>
7#include <unordered_map> 8#include <unordered_map>
8#include "common/common_types.h" 9#include "common/common_types.h"
9#include "common/hash.h" 10#include "common/hash.h"