summaryrefslogtreecommitdiff
path: root/src/video_core/shader/shader.cpp
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2016-04-30 16:34:51 +0100
committerGravatar Emmanuel Gil Peyrot2016-04-30 17:02:41 +0100
commit691a42fe98954c247a8b7e9305a3e9ca5c04d40c (patch)
tree52b6a286b6609675cbc69c63b3aa9f695ea95f0f /src/video_core/shader/shader.cpp
parentLCD: Remove unneeded #undef with no matching #define. (diff)
downloadyuzu-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/shader/shader.cpp')
-rw-r--r--src/video_core/shader/shader.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/video_core/shader/shader.cpp b/src/video_core/shader/shader.cpp
index 043e99190..356d87f13 100644
--- a/src/video_core/shader/shader.cpp
+++ b/src/video_core/shader/shader.cpp
@@ -2,26 +2,30 @@
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 <memory> 5#include <atomic>
6#include <cmath>
7#include <cstring>
6#include <unordered_map> 8#include <unordered_map>
9#include <utility>
7 10
8#include <boost/range/algorithm/fill.hpp> 11#include <boost/range/algorithm/fill.hpp>
9 12
13#include "common/bit_field.h"
10#include "common/hash.h" 14#include "common/hash.h"
15#include "common/logging/log.h"
11#include "common/microprofile.h" 16#include "common/microprofile.h"
12 17
13#include "video_core/debug_utils/debug_utils.h"
14#include "video_core/pica.h" 18#include "video_core/pica.h"
15#include "video_core/pica_state.h" 19#include "video_core/pica_state.h"
16#include "video_core/video_core.h" 20#include "video_core/shader/shader.h"
17 21#include "video_core/shader/shader_interpreter.h"
18#include "shader.h"
19#include "shader_interpreter.h"
20 22
21#ifdef ARCHITECTURE_x86_64 23#ifdef ARCHITECTURE_x86_64
22#include "shader_jit_x64.h" 24#include "video_core/shader/shader_jit_x64.h"
23#endif // ARCHITECTURE_x86_64 25#endif // ARCHITECTURE_x86_64
24 26
27#include "video_core/video_core.h"
28
25namespace Pica { 29namespace Pica {
26 30
27namespace Shader { 31namespace Shader {