diff options
| author | 2016-09-21 00:21:23 +0900 | |
|---|---|---|
| committer | 2016-09-21 11:15:47 +0900 | |
| commit | ebdae19fd226104baec712b9da9939ff82ef3c3a (patch) | |
| tree | e046c0f562fc4400480b2e3257f140e973a9ce6a /src/core/hw/gpu.cpp | |
| parent | Manually tweak source formatting and then re-run clang-format (diff) | |
| download | yuzu-ebdae19fd226104baec712b9da9939ff82ef3c3a.tar.gz yuzu-ebdae19fd226104baec712b9da9939ff82ef3c3a.tar.xz yuzu-ebdae19fd226104baec712b9da9939ff82ef3c3a.zip | |
Remove empty newlines in #include blocks.
This makes clang-format useful on those.
Also add a bunch of forgotten transitive includes, which otherwise
prevented compilation.
Diffstat (limited to 'src/core/hw/gpu.cpp')
| -rw-r--r-- | src/core/hw/gpu.cpp | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp index bf2c066f4..776c8fef7 100644 --- a/src/core/hw/gpu.cpp +++ b/src/core/hw/gpu.cpp | |||
| @@ -2,36 +2,29 @@ | |||
| 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" | ||
| 5 | #include <cstring> | 6 | #include <cstring> |
| 6 | #include <numeric> | 7 | #include <numeric> |
| 7 | #include <type_traits> | 8 | #include <type_traits> |
| 8 | |||
| 9 | #include "common/color.h" | 9 | #include "common/color.h" |
| 10 | #include "common/common_types.h" | 10 | #include "common/common_types.h" |
| 11 | #include "common/logging/log.h" | 11 | #include "common/logging/log.h" |
| 12 | #include "common/microprofile.h" | 12 | #include "common/microprofile.h" |
| 13 | #include "common/vector_math.h" | 13 | #include "common/vector_math.h" |
| 14 | |||
| 15 | #include "core/core_timing.h" | 14 | #include "core/core_timing.h" |
| 16 | #include "core/memory.h" | ||
| 17 | #include "core/settings.h" | ||
| 18 | |||
| 19 | #include "core/hle/service/gsp_gpu.h" | 15 | #include "core/hle/service/gsp_gpu.h" |
| 20 | #include "core/hle/service/hid/hid.h" | 16 | #include "core/hle/service/hid/hid.h" |
| 21 | |||
| 22 | #include "core/hw/gpu.h" | ||
| 23 | #include "core/hw/hw.h" | 17 | #include "core/hw/hw.h" |
| 24 | 18 | #include "core/memory.h" | |
| 19 | #include "core/settings.h" | ||
| 25 | #include "core/tracer/recorder.h" | 20 | #include "core/tracer/recorder.h" |
| 26 | |||
| 27 | #include "video_core/command_processor.h" | 21 | #include "video_core/command_processor.h" |
| 22 | #include "video_core/debug_utils/debug_utils.h" | ||
| 28 | #include "video_core/rasterizer_interface.h" | 23 | #include "video_core/rasterizer_interface.h" |
| 29 | #include "video_core/renderer_base.h" | 24 | #include "video_core/renderer_base.h" |
| 30 | #include "video_core/utils.h" | 25 | #include "video_core/utils.h" |
| 31 | #include "video_core/video_core.h" | 26 | #include "video_core/video_core.h" |
| 32 | 27 | ||
| 33 | #include "video_core/debug_utils/debug_utils.h" | ||
| 34 | |||
| 35 | namespace GPU { | 28 | namespace GPU { |
| 36 | 29 | ||
| 37 | Regs g_regs; | 30 | Regs g_regs; |