summaryrefslogtreecommitdiffstats
path: root/src/core/hw
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2016-09-21 08:52:38 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2016-09-21 09:15:56 +0200
commit84fbbe26297652d994d203bde543ec252c2d801a (patch)
tree5f6fcc088dab9d53ee30e64b47fce2e04c8fb13c /src/core/hw
parentRemove empty newlines in #include blocks. (diff)
downloadyuzu-84fbbe26297652d994d203bde543ec252c2d801a.tar
yuzu-84fbbe26297652d994d203bde543ec252c2d801a.tar.gz
yuzu-84fbbe26297652d994d203bde543ec252c2d801a.tar.bz2
yuzu-84fbbe26297652d994d203bde543ec252c2d801a.tar.lz
yuzu-84fbbe26297652d994d203bde543ec252c2d801a.tar.xz
yuzu-84fbbe26297652d994d203bde543ec252c2d801a.tar.zst
yuzu-84fbbe26297652d994d203bde543ec252c2d801a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hw/gpu.cpp2
-rw-r--r--src/core/hw/hw.cpp2
-rw-r--r--src/core/hw/lcd.cpp2
-rw-r--r--src/core/hw/y2r.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp
index 776c8fef7..0e6b91e3a 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -2,7 +2,6 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#include "core/hw/gpu.h"
#include <cstring>
#include <numeric>
#include <type_traits>
@@ -14,6 +13,7 @@
#include "core/core_timing.h"
#include "core/hle/service/gsp_gpu.h"
#include "core/hle/service/hid/hid.h"
+#include "core/hw/gpu.h"
#include "core/hw/hw.h"
#include "core/memory.h"
#include "core/settings.h"
diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp
index 0f84d5adb..9ff8825b2 100644
--- a/src/core/hw/hw.cpp
+++ b/src/core/hw/hw.cpp
@@ -2,10 +2,10 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#include "core/hw/hw.h"
#include "common/common_types.h"
#include "common/logging/log.h"
#include "core/hw/gpu.h"
+#include "core/hw/hw.h"
#include "core/hw/lcd.h"
namespace HW {
diff --git a/src/core/hw/lcd.cpp b/src/core/hw/lcd.cpp
index 5231e4cc5..2aa89de18 100644
--- a/src/core/hw/lcd.cpp
+++ b/src/core/hw/lcd.cpp
@@ -2,11 +2,11 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#include "core/hw/lcd.h"
#include <cstring>
#include "common/common_types.h"
#include "common/logging/log.h"
#include "core/hw/hw.h"
+#include "core/hw/lcd.h"
#include "core/tracer/recorder.h"
#include "video_core/debug_utils/debug_utils.h"
diff --git a/src/core/hw/y2r.cpp b/src/core/hw/y2r.cpp
index 0e13420d7..6a6c707a2 100644
--- a/src/core/hw/y2r.cpp
+++ b/src/core/hw/y2r.cpp
@@ -2,7 +2,6 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#include "core/hw/y2r.h"
#include <algorithm>
#include <array>
#include <cstddef>
@@ -13,6 +12,7 @@
#include "common/math_util.h"
#include "common/vector_math.h"
#include "core/hle/service/y2r_u.h"
+#include "core/hw/y2r.h"
#include "core/memory.h"
namespace HW {