summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-06-10 05:33:48 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:35 +0200
commit15bdd27cac4a0b1e6cd168272dc337cd685ef144 (patch)
treeae1d5c1a93bfc500e3603cb4fad8318676a13f1d
parentgl_texture_cache: Create image storage views (diff)
downloadyuzu-15bdd27cac4a0b1e6cd168272dc337cd685ef144.tar
yuzu-15bdd27cac4a0b1e6cd168272dc337cd685ef144.tar.gz
yuzu-15bdd27cac4a0b1e6cd168272dc337cd685ef144.tar.bz2
yuzu-15bdd27cac4a0b1e6cd168272dc337cd685ef144.tar.lz
yuzu-15bdd27cac4a0b1e6cd168272dc337cd685ef144.tar.xz
yuzu-15bdd27cac4a0b1e6cd168272dc337cd685ef144.tar.zst
yuzu-15bdd27cac4a0b1e6cd168272dc337cd685ef144.zip
-rw-r--r--src/shader_recompiler/program_header.h4
-rw-r--r--src/video_core/shader_environment.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/shader_recompiler/program_header.h b/src/shader_recompiler/program_header.h
index 15f43f2d8..6933750aa 100644
--- a/src/shader_recompiler/program_header.h
+++ b/src/shader_recompiler/program_header.h
@@ -230,8 +230,8 @@ struct ProgramHeader {
};
[[nodiscard]] u64 LocalMemorySize() const noexcept {
- return (common1.shader_local_memory_low_size |
- (common2.shader_local_memory_high_size << 24));
+ return static_cast<u64>(common1.shader_local_memory_low_size) |
+ (static_cast<u64>(common2.shader_local_memory_high_size) << 24);
}
};
static_assert(sizeof(ProgramHeader) == 0x50, "Incorrect structure size");
diff --git a/src/video_core/shader_environment.cpp b/src/video_core/shader_environment.cpp
index c93174519..a7a57a36f 100644
--- a/src/video_core/shader_environment.cpp
+++ b/src/video_core/shader_environment.cpp
@@ -69,7 +69,7 @@ u32 GenericEnvironment::TextureBoundBuffer() const {
}
u32 GenericEnvironment::LocalMemorySize() const {
- return local_memory_size;
+ return local_memory_size + sph.common3.shader_local_memory_crs_size;
}
u32 GenericEnvironment::SharedMemorySize() const {