diff options
| author | 2016-09-20 23:52:38 -0700 | |
|---|---|---|
| committer | 2016-09-21 00:15:56 -0700 | |
| commit | 84fbbe26297652d994d203bde543ec252c2d801a (patch) | |
| tree | 5f6fcc088dab9d53ee30e64b47fce2e04c8fb13c /src/core/hw | |
| parent | Remove empty newlines in #include blocks. (diff) | |
| download | yuzu-84fbbe26297652d994d203bde543ec252c2d801a.tar.gz yuzu-84fbbe26297652d994d203bde543ec252c2d801a.tar.xz yuzu-84fbbe26297652d994d203bde543ec252c2d801a.zip | |
Use negative priorities to avoid special-casing the self-include
Diffstat (limited to 'src/core/hw')
| -rw-r--r-- | src/core/hw/gpu.cpp | 2 | ||||
| -rw-r--r-- | src/core/hw/hw.cpp | 2 | ||||
| -rw-r--r-- | src/core/hw/lcd.cpp | 2 | ||||
| -rw-r--r-- | src/core/hw/y2r.cpp | 2 |
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 @@ | |||
| 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 "core/hw/gpu.h" | ||
| 6 | #include <cstring> | 5 | #include <cstring> |
| 7 | #include <numeric> | 6 | #include <numeric> |
| 8 | #include <type_traits> | 7 | #include <type_traits> |
| @@ -14,6 +13,7 @@ | |||
| 14 | #include "core/core_timing.h" | 13 | #include "core/core_timing.h" |
| 15 | #include "core/hle/service/gsp_gpu.h" | 14 | #include "core/hle/service/gsp_gpu.h" |
| 16 | #include "core/hle/service/hid/hid.h" | 15 | #include "core/hle/service/hid/hid.h" |
| 16 | #include "core/hw/gpu.h" | ||
| 17 | #include "core/hw/hw.h" | 17 | #include "core/hw/hw.h" |
| 18 | #include "core/memory.h" | 18 | #include "core/memory.h" |
| 19 | #include "core/settings.h" | 19 | #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 @@ | |||
| 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 "core/hw/hw.h" | ||
| 6 | #include "common/common_types.h" | 5 | #include "common/common_types.h" |
| 7 | #include "common/logging/log.h" | 6 | #include "common/logging/log.h" |
| 8 | #include "core/hw/gpu.h" | 7 | #include "core/hw/gpu.h" |
| 8 | #include "core/hw/hw.h" | ||
| 9 | #include "core/hw/lcd.h" | 9 | #include "core/hw/lcd.h" |
| 10 | 10 | ||
| 11 | namespace HW { | 11 | 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 @@ | |||
| 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 "core/hw/lcd.h" | ||
| 6 | #include <cstring> | 5 | #include <cstring> |
| 7 | #include "common/common_types.h" | 6 | #include "common/common_types.h" |
| 8 | #include "common/logging/log.h" | 7 | #include "common/logging/log.h" |
| 9 | #include "core/hw/hw.h" | 8 | #include "core/hw/hw.h" |
| 9 | #include "core/hw/lcd.h" | ||
| 10 | #include "core/tracer/recorder.h" | 10 | #include "core/tracer/recorder.h" |
| 11 | #include "video_core/debug_utils/debug_utils.h" | 11 | #include "video_core/debug_utils/debug_utils.h" |
| 12 | 12 | ||
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 @@ | |||
| 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 "core/hw/y2r.h" | ||
| 6 | #include <algorithm> | 5 | #include <algorithm> |
| 7 | #include <array> | 6 | #include <array> |
| 8 | #include <cstddef> | 7 | #include <cstddef> |
| @@ -13,6 +12,7 @@ | |||
| 13 | #include "common/math_util.h" | 12 | #include "common/math_util.h" |
| 14 | #include "common/vector_math.h" | 13 | #include "common/vector_math.h" |
| 15 | #include "core/hle/service/y2r_u.h" | 14 | #include "core/hle/service/y2r_u.h" |
| 15 | #include "core/hw/y2r.h" | ||
| 16 | #include "core/memory.h" | 16 | #include "core/memory.h" |
| 17 | 17 | ||
| 18 | namespace HW { | 18 | namespace HW { |