summaryrefslogtreecommitdiff
path: root/src/video_core/shader_environment.cpp
diff options
context:
space:
mode:
authorGravatar ameerj2021-06-09 23:33:48 -0400
committerGravatar ameerj2021-07-22 21:51:35 -0400
commit15bdd27cac4a0b1e6cd168272dc337cd685ef144 (patch)
treeae1d5c1a93bfc500e3603cb4fad8318676a13f1d /src/video_core/shader_environment.cpp
parentgl_texture_cache: Create image storage views (diff)
downloadyuzu-15bdd27cac4a0b1e6cd168272dc337cd685ef144.tar.gz
yuzu-15bdd27cac4a0b1e6cd168272dc337cd685ef144.tar.xz
yuzu-15bdd27cac4a0b1e6cd168272dc337cd685ef144.zip
shader_environment: Add shader_local_memory_crs_size to local memory size
Fixes DOOM 2016 missing local memory
Diffstat (limited to 'src/video_core/shader_environment.cpp')
-rw-r--r--src/video_core/shader_environment.cpp2
1 files changed, 1 insertions, 1 deletions
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 {
69} 69}
70 70
71u32 GenericEnvironment::LocalMemorySize() const { 71u32 GenericEnvironment::LocalMemorySize() const {
72 return local_memory_size; 72 return local_memory_size + sph.common3.shader_local_memory_crs_size;
73} 73}
74 74
75u32 GenericEnvironment::SharedMemorySize() const { 75u32 GenericEnvironment::SharedMemorySize() const {