diff options
| author | 2016-04-30 16:34:51 +0100 | |
|---|---|---|
| committer | 2016-04-30 17:02:41 +0100 | |
| commit | 691a42fe98954c247a8b7e9305a3e9ca5c04d40c (patch) | |
| tree | 52b6a286b6609675cbc69c63b3aa9f695ea95f0f /src/video_core/rasterizer.cpp | |
| parent | LCD: Remove unneeded #undef with no matching #define. (diff) | |
| download | yuzu-691a42fe98954c247a8b7e9305a3e9ca5c04d40c.tar.gz yuzu-691a42fe98954c247a8b7e9305a3e9ca5c04d40c.tar.xz yuzu-691a42fe98954c247a8b7e9305a3e9ca5c04d40c.zip | |
VideoCore: Run include-what-you-use and fix most includes.
Diffstat (limited to 'src/video_core/rasterizer.cpp')
| -rw-r--r-- | src/video_core/rasterizer.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/video_core/rasterizer.cpp b/src/video_core/rasterizer.cpp index 9cf77b1f2..df67b9081 100644 --- a/src/video_core/rasterizer.cpp +++ b/src/video_core/rasterizer.cpp | |||
| @@ -3,22 +3,28 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | 5 | #include <algorithm> |
| 6 | #include <array> | ||
| 6 | #include <cmath> | 7 | #include <cmath> |
| 7 | 8 | ||
| 9 | #include "common/assert.h" | ||
| 10 | #include "common/bit_field.h" | ||
| 8 | #include "common/color.h" | 11 | #include "common/color.h" |
| 9 | #include "common/common_types.h" | 12 | #include "common/common_types.h" |
| 13 | #include "common/logging/log.h" | ||
| 10 | #include "common/math_util.h" | 14 | #include "common/math_util.h" |
| 11 | #include "common/microprofile.h" | 15 | #include "common/microprofile.h" |
| 16 | #include "common/vector_math.h" | ||
| 12 | 17 | ||
| 13 | #include "core/memory.h" | 18 | #include "core/memory.h" |
| 14 | #include "core/hw/gpu.h" | 19 | #include "core/hw/gpu.h" |
| 15 | 20 | ||
| 21 | #include "video_core/debug_utils/debug_utils.h" | ||
| 16 | #include "video_core/pica.h" | 22 | #include "video_core/pica.h" |
| 17 | #include "video_core/pica_state.h" | 23 | #include "video_core/pica_state.h" |
| 24 | #include "video_core/pica_types.h" | ||
| 18 | #include "video_core/rasterizer.h" | 25 | #include "video_core/rasterizer.h" |
| 19 | #include "video_core/utils.h" | 26 | #include "video_core/utils.h" |
| 20 | #include "video_core/debug_utils/debug_utils.h" | 27 | #include "video_core/shader/shader.h" |
| 21 | #include "video_core/shader/shader_interpreter.h" | ||
| 22 | 28 | ||
| 23 | namespace Pica { | 29 | namespace Pica { |
| 24 | 30 | ||