summaryrefslogtreecommitdiffstats
path: root/src/core/hw/gpu.cpp
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-27 18:56:17 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-28 01:46:39 +0200
commit4964a359e1a82f87a9772140fd1d933c5812c2e7 (patch)
tree49bae12a6ba7f7d946bb85fe9d304ab958815609 /src/core/hw/gpu.cpp
parentCore: Cleanup soc:U includes. (diff)
downloadyuzu-4964a359e1a82f87a9772140fd1d933c5812c2e7.tar
yuzu-4964a359e1a82f87a9772140fd1d933c5812c2e7.tar.gz
yuzu-4964a359e1a82f87a9772140fd1d933c5812c2e7.tar.bz2
yuzu-4964a359e1a82f87a9772140fd1d933c5812c2e7.tar.lz
yuzu-4964a359e1a82f87a9772140fd1d933c5812c2e7.tar.xz
yuzu-4964a359e1a82f87a9772140fd1d933c5812c2e7.tar.zst
yuzu-4964a359e1a82f87a9772140fd1d933c5812c2e7.zip
Diffstat (limited to '')
-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 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#include <cstring>
+#include <type_traits>
+
#include "common/color.h"
#include "common/common_types.h"
-
-#include "core/arm/arm_interface.h"
+#include "common/logging/log.h"
+#include "common/vector_math.h"
#include "core/settings.h"
-#include "core/core.h"
#include "core/memory.h"
#include "core/core_timing.h"
-#include "core/hle/hle.h"
#include "core/hle/service/gsp_gpu.h"
#include "core/hle/service/dsp_dsp.h"
#include "core/hle/service/hid/hid.h"
@@ -21,6 +22,7 @@
#include "core/hw/gpu.h"
#include "video_core/command_processor.h"
+#include "video_core/hwrasterizer_base.h"
#include "video_core/renderer_base.h"
#include "video_core/utils.h"
#include "video_core/video_core.h"