diff options
| author | 2016-05-01 17:44:57 -0400 | |
|---|---|---|
| committer | 2016-05-01 17:44:57 -0400 | |
| commit | 15d0e982678d6151bb058fbb8ea0f39b7ffa688a (patch) | |
| tree | 716ea2ff8d136622183261274564eeb03aed5c5f /src/video_core/vertex_loader.cpp | |
| parent | Merge pull request #1745 from JayFoxRox/fix-const_color (diff) | |
| parent | VideoCore: Run include-what-you-use and fix most includes. (diff) | |
| download | yuzu-15d0e982678d6151bb058fbb8ea0f39b7ffa688a.tar.gz yuzu-15d0e982678d6151bb058fbb8ea0f39b7ffa688a.tar.xz yuzu-15d0e982678d6151bb058fbb8ea0f39b7ffa688a.zip | |
Merge pull request #1741 from linkmauve/iwyu-video_core
Fix video_core includes (and dependencies) using include-what-you-use
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 |