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/vertex_loader.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/vertex_loader.cpp')
| -rw-r--r-- | src/video_core/vertex_loader.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/video_core/vertex_loader.cpp b/src/video_core/vertex_loader.cpp index 8a3d91896..21ae52949 100644 --- a/src/video_core/vertex_loader.cpp +++ b/src/video_core/vertex_loader.cpp | |||
| @@ -1,14 +1,13 @@ | |||
| 1 | #include <cmath> | 1 | #include <memory> |
| 2 | #include <string> | ||
| 3 | 2 | ||
| 4 | #include "boost/range/algorithm/fill.hpp" | 3 | #include <boost/range/algorithm/fill.hpp> |
| 5 | 4 | ||
| 6 | #include "common/assert.h" | 5 | #include "common/assert.h" |
| 7 | #include "common/alignment.h" | 6 | #include "common/alignment.h" |
| 8 | #include "common/bit_field.h" | 7 | #include "common/bit_field.h" |
| 9 | #include "common/common_funcs.h" | ||
| 10 | #include "common/common_types.h" | 8 | #include "common/common_types.h" |
| 11 | #include "common/logging/log.h" | 9 | #include "common/logging/log.h" |
| 10 | #include "common/vector_math.h" | ||
| 12 | 11 | ||
| 13 | #include "core/memory.h" | 12 | #include "core/memory.h" |
| 14 | 13 | ||
| @@ -16,6 +15,7 @@ | |||
| 16 | #include "video_core/pica.h" | 15 | #include "video_core/pica.h" |
| 17 | #include "video_core/pica_state.h" | 16 | #include "video_core/pica_state.h" |
| 18 | #include "video_core/pica_types.h" | 17 | #include "video_core/pica_types.h" |
| 18 | #include "video_core/shader/shader.h" | ||
| 19 | #include "video_core/vertex_loader.h" | 19 | #include "video_core/vertex_loader.h" |
| 20 | 20 | ||
| 21 | namespace Pica { | 21 | namespace Pica { |
| @@ -137,4 +137,4 @@ void VertexLoader::LoadVertex(u32 base_address, int index, int vertex, Shader::I | |||
| 137 | } | 137 | } |
| 138 | } | 138 | } |
| 139 | 139 | ||
| 140 | } // namespace Pica \ No newline at end of file | 140 | } // namespace Pica |