diff options
| author | 2021-06-23 02:41:00 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:39 -0400 | |
| commit | 395bed3a0af90a53be44e81eadd06f4931c8e933 (patch) | |
| tree | 9c9b45a5d3c4cd72957d0bc5631c3e71106344d1 /src/video_core/shader_environment.cpp | |
| parent | lower_int64_to_int32: Add missing include (diff) | |
| download | yuzu-395bed3a0af90a53be44e81eadd06f4931c8e933.tar.gz yuzu-395bed3a0af90a53be44e81eadd06f4931c8e933.tar.xz yuzu-395bed3a0af90a53be44e81eadd06f4931c8e933.zip | |
shader: Unify shader stage types
Diffstat (limited to 'src/video_core/shader_environment.cpp')
| -rw-r--r-- | src/video_core/shader_environment.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader_environment.cpp b/src/video_core/shader_environment.cpp index 6243cd176..d463e2b56 100644 --- a/src/video_core/shader_environment.cpp +++ b/src/video_core/shader_environment.cpp | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | namespace VideoCommon { | 22 | namespace VideoCommon { |
| 23 | 23 | ||
| 24 | constexpr std::array<char, 8> MAGIC_NUMBER{'y', 'u', 'z', 'u', 'c', 'a', 'c', 'h'}; | 24 | constexpr std::array<char, 8> MAGIC_NUMBER{'y', 'u', 'z', 'u', 'c', 'a', 'c', 'h'}; |
| 25 | constexpr u32 CACHE_VERSION = 3; | 25 | constexpr u32 CACHE_VERSION = 4; |
| 26 | 26 | ||
| 27 | constexpr size_t INST_SIZE = sizeof(u64); | 27 | constexpr size_t INST_SIZE = sizeof(u64); |
| 28 | 28 | ||