diff options
Diffstat (limited to 'src/video_core/shader/shader.cpp')
| -rw-r--r-- | src/video_core/shader/shader.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/video_core/shader/shader.cpp b/src/video_core/shader/shader.cpp index c38bdcc3c..53e91df03 100644 --- a/src/video_core/shader/shader.cpp +++ b/src/video_core/shader/shader.cpp | |||
| @@ -2,28 +2,23 @@ | |||
| 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 "video_core/shader/shader.h" | ||
| 5 | #include <atomic> | 6 | #include <atomic> |
| 6 | #include <cmath> | 7 | #include <cmath> |
| 7 | #include <cstring> | 8 | #include <cstring> |
| 8 | #include <unordered_map> | 9 | #include <unordered_map> |
| 9 | #include <utility> | 10 | #include <utility> |
| 10 | |||
| 11 | #include <boost/range/algorithm/fill.hpp> | 11 | #include <boost/range/algorithm/fill.hpp> |
| 12 | |||
| 13 | #include "common/bit_field.h" | 12 | #include "common/bit_field.h" |
| 14 | #include "common/hash.h" | 13 | #include "common/hash.h" |
| 15 | #include "common/logging/log.h" | 14 | #include "common/logging/log.h" |
| 16 | #include "common/microprofile.h" | 15 | #include "common/microprofile.h" |
| 17 | |||
| 18 | #include "video_core/pica.h" | 16 | #include "video_core/pica.h" |
| 19 | #include "video_core/pica_state.h" | 17 | #include "video_core/pica_state.h" |
| 20 | #include "video_core/shader/shader.h" | ||
| 21 | #include "video_core/shader/shader_interpreter.h" | 18 | #include "video_core/shader/shader_interpreter.h" |
| 22 | |||
| 23 | #ifdef ARCHITECTURE_x86_64 | 19 | #ifdef ARCHITECTURE_x86_64 |
| 24 | #include "video_core/shader/shader_jit_x64.h" | 20 | #include "video_core/shader/shader_jit_x64.h" |
| 25 | #endif // ARCHITECTURE_x86_64 | 21 | #endif // ARCHITECTURE_x86_64 |
| 26 | |||
| 27 | #include "video_core/video_core.h" | 22 | #include "video_core/video_core.h" |
| 28 | 23 | ||
| 29 | namespace Pica { | 24 | namespace Pica { |