summaryrefslogtreecommitdiff
path: root/src/core/hw/gpu.cpp
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2015-06-27 17:56:17 +0100
committerGravatar Emmanuel Gil Peyrot2015-06-28 00:46:39 +0100
commit4964a359e1a82f87a9772140fd1d933c5812c2e7 (patch)
tree49bae12a6ba7f7d946bb85fe9d304ab958815609 /src/core/hw/gpu.cpp
parentCore: Cleanup soc:U includes. (diff)
downloadyuzu-4964a359e1a82f87a9772140fd1d933c5812c2e7.tar.gz
yuzu-4964a359e1a82f87a9772140fd1d933c5812c2e7.tar.xz
yuzu-4964a359e1a82f87a9772140fd1d933c5812c2e7.zip
Core: Cleanup hw includes.
Diffstat (limited to 'src/core/hw/gpu.cpp')
-rw-r--r--src/core/hw/gpu.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp
index bdceb6984..901519a8b 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -2,17 +2,18 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <cstring>
6#include <type_traits>
7
5#include "common/color.h" 8#include "common/color.h"
6#include "common/common_types.h" 9#include "common/common_types.h"
7 10#include "common/logging/log.h"
8#include "core/arm/arm_interface.h" 11#include "common/vector_math.h"
9 12
10#include "core/settings.h" 13#include "core/settings.h"
11#include "core/core.h"
12#include "core/memory.h" 14#include "core/memory.h"
13#include "core/core_timing.h" 15#include "core/core_timing.h"
14 16
15#include "core/hle/hle.h"
16#include "core/hle/service/gsp_gpu.h" 17#include "core/hle/service/gsp_gpu.h"
17#include "core/hle/service/dsp_dsp.h" 18#include "core/hle/service/dsp_dsp.h"
18#include "core/hle/service/hid/hid.h" 19#include "core/hle/service/hid/hid.h"
@@ -21,6 +22,7 @@
21#include "core/hw/gpu.h" 22#include "core/hw/gpu.h"
22 23
23#include "video_core/command_processor.h" 24#include "video_core/command_processor.h"
25#include "video_core/hwrasterizer_base.h"
24#include "video_core/renderer_base.h" 26#include "video_core/renderer_base.h"
25#include "video_core/utils.h" 27#include "video_core/utils.h"
26#include "video_core/video_core.h" 28#include "video_core/video_core.h"