diff options
| author | 2016-12-17 00:06:23 -0800 | |
|---|---|---|
| committer | 2017-01-25 18:53:23 -0800 | |
| commit | 8eefc62833bc8c3052c23f4f0d01d8b60a01925c (patch) | |
| tree | ca580e5b048cc7d5ce84a1256dd2c3a2e3aeb76e /src | |
| 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')
| -rw-r--r-- | src/video_core/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | src/video_core/shader/shader.cpp | 2 | ||||
| -rw-r--r-- | src/video_core/shader/shader_jit_x64_compiler.cpp (renamed from src/video_core/shader/shader_jit_x64.cpp) | 2 | ||||
| -rw-r--r-- | src/video_core/shader/shader_jit_x64_compiler.h (renamed from src/video_core/shader/shader_jit_x64.h) | 0 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index 6ca319b59..36397cce9 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt | |||
| @@ -50,10 +50,10 @@ set(HEADERS | |||
| 50 | 50 | ||
| 51 | if(ARCHITECTURE_x86_64) | 51 | if(ARCHITECTURE_x86_64) |
| 52 | set(SRCS ${SRCS} | 52 | set(SRCS ${SRCS} |
| 53 | shader/shader_jit_x64.cpp) | 53 | shader/shader_jit_x64_compiler.cpp) |
| 54 | 54 | ||
| 55 | set(HEADERS ${HEADERS} | 55 | set(HEADERS ${HEADERS} |
| 56 | shader/shader_jit_x64.h) | 56 | shader/shader_jit_x64_compiler.h) |
| 57 | endif() | 57 | endif() |
| 58 | 58 | ||
| 59 | create_directory_groups(${SRCS} ${HEADERS}) | 59 | create_directory_groups(${SRCS} ${HEADERS}) |
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 | ||
diff --git a/src/video_core/shader/shader_jit_x64.cpp b/src/video_core/shader/shader_jit_x64_compiler.cpp index c588b778b..880543306 100644 --- a/src/video_core/shader/shader_jit_x64.cpp +++ b/src/video_core/shader/shader_jit_x64_compiler.cpp | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "video_core/pica_state.h" | 17 | #include "video_core/pica_state.h" |
| 18 | #include "video_core/pica_types.h" | 18 | #include "video_core/pica_types.h" |
| 19 | #include "video_core/shader/shader.h" | 19 | #include "video_core/shader/shader.h" |
| 20 | #include "video_core/shader/shader_jit_x64.h" | 20 | #include "video_core/shader/shader_jit_x64_compiler.h" |
| 21 | 21 | ||
| 22 | using namespace Common::X64; | 22 | using namespace Common::X64; |
| 23 | using namespace Xbyak::util; | 23 | using namespace Xbyak::util; |
diff --git a/src/video_core/shader/shader_jit_x64.h b/src/video_core/shader/shader_jit_x64_compiler.h index f37548306..f37548306 100644 --- a/src/video_core/shader/shader_jit_x64.h +++ b/src/video_core/shader/shader_jit_x64_compiler.h | |||