diff options
| author | 2016-12-17 00:06:23 -0800 | |
|---|---|---|
| committer | 2017-01-25 18:53:23 -0800 | |
| commit | 8eefc62833bc8c3052c23f4f0d01d8b60a01925c (patch) | |
| tree | ca580e5b048cc7d5ce84a1256dd2c3a2e3aeb76e /src/video_core/shader/shader.cpp | |
| parent | VideoCore/Shader: Split shader uniform state and shader engine (diff) | |
| download | yuzu-8eefc62833bc8c3052c23f4f0d01d8b60a01925c.tar.gz yuzu-8eefc62833bc8c3052c23f4f0d01d8b60a01925c.tar.xz yuzu-8eefc62833bc8c3052c23f4f0d01d8b60a01925c.zip | |
VideoCore/Shader: Rename shader_jit_x64{ => _compiler}.{cpp,h}
Diffstat (limited to 'src/video_core/shader/shader.cpp')
| -rw-r--r-- | src/video_core/shader/shader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/shader.cpp b/src/video_core/shader/shader.cpp index d276a1221..97c6519d6 100644 --- a/src/video_core/shader/shader.cpp +++ b/src/video_core/shader/shader.cpp | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "video_core/shader/shader.h" | 17 | #include "video_core/shader/shader.h" |
| 18 | #include "video_core/shader/shader_interpreter.h" | 18 | #include "video_core/shader/shader_interpreter.h" |
| 19 | #ifdef ARCHITECTURE_x86_64 | 19 | #ifdef ARCHITECTURE_x86_64 |
| 20 | #include "video_core/shader/shader_jit_x64.h" | 20 | #include "video_core/shader/shader_jit_x64_compiler.h" |
| 21 | #endif // ARCHITECTURE_x86_64 | 21 | #endif // ARCHITECTURE_x86_64 |
| 22 | #include "video_core/video_core.h" | 22 | #include "video_core/video_core.h" |
| 23 | 23 | ||