diff options
Diffstat (limited to 'src/video_core/shader/shader.h')
| -rw-r--r-- | src/video_core/shader/shader.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/video_core/shader/shader.h b/src/video_core/shader/shader.h index 9ce9344d2..56b83bfeb 100644 --- a/src/video_core/shader/shader.h +++ b/src/video_core/shader/shader.h | |||
| @@ -4,17 +4,23 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <array> | ||
| 8 | #include <cstddef> | ||
| 9 | #include <memory> | ||
| 10 | #include <type_traits> | ||
| 7 | #include <vector> | 11 | #include <vector> |
| 8 | 12 | ||
| 9 | #include <boost/container/static_vector.hpp> | 13 | #include <boost/container/static_vector.hpp> |
| 10 | 14 | ||
| 11 | #include <nihstro/shader_binary.h> | 15 | #include <nihstro/shader_bytecode.h> |
| 12 | 16 | ||
| 17 | #include "common/assert.h" | ||
| 13 | #include "common/common_funcs.h" | 18 | #include "common/common_funcs.h" |
| 14 | #include "common/common_types.h" | 19 | #include "common/common_types.h" |
| 15 | #include "common/vector_math.h" | 20 | #include "common/vector_math.h" |
| 16 | 21 | ||
| 17 | #include "video_core/pica.h" | 22 | #include "video_core/pica.h" |
| 23 | #include "video_core/pica_types.h" | ||
| 18 | 24 | ||
| 19 | using nihstro::RegisterType; | 25 | using nihstro::RegisterType; |
| 20 | using nihstro::SourceRegister; | 26 | using nihstro::SourceRegister; |