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/clipper.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/clipper.cpp')
| -rw-r--r-- | src/video_core/clipper.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/video_core/clipper.cpp b/src/video_core/clipper.cpp index 3d503486e..2bc747102 100644 --- a/src/video_core/clipper.cpp +++ b/src/video_core/clipper.cpp | |||
| @@ -2,13 +2,24 @@ | |||
| 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 <algorithm> | ||
| 6 | #include <array> | ||
| 7 | #include <cstddef> | ||
| 8 | |||
| 5 | #include <boost/container/static_vector.hpp> | 9 | #include <boost/container/static_vector.hpp> |
| 10 | #include <boost/container/vector.hpp> | ||
| 11 | |||
| 12 | #include "common/bit_field.h" | ||
| 13 | #include "common/common_types.h" | ||
| 14 | #include "common/logging/log.h" | ||
| 15 | #include "common/vector_math.h" | ||
| 6 | 16 | ||
| 7 | #include "video_core/clipper.h" | 17 | #include "video_core/clipper.h" |
| 8 | #include "video_core/pica.h" | 18 | #include "video_core/pica.h" |
| 9 | #include "video_core/pica_state.h" | 19 | #include "video_core/pica_state.h" |
| 20 | #include "video_core/pica_types.h" | ||
| 10 | #include "video_core/rasterizer.h" | 21 | #include "video_core/rasterizer.h" |
| 11 | #include "video_core/shader/shader_interpreter.h" | 22 | #include "video_core/shader/shader.h" |
| 12 | 23 | ||
| 13 | namespace Pica { | 24 | namespace Pica { |
| 14 | 25 | ||