diff options
| author | 2018-08-31 11:21:15 -0400 | |
|---|---|---|
| committer | 2018-08-31 11:21:15 -0400 | |
| commit | 6683bf50b5bf7c88a9781b30fb3be59006b5a549 (patch) | |
| tree | 5b35b365dd3c11db09fba04fa9ffb7ba30315646 /src | |
| parent | Merge pull request #1208 from Hexagon12/pred-comp-14 (diff) | |
| parent | Report correct shader size. (diff) | |
| download | yuzu-6683bf50b5bf7c88a9781b30fb3be59006b5a549.tar.gz yuzu-6683bf50b5bf7c88a9781b30fb3be59006b5a549.tar.xz yuzu-6683bf50b5bf7c88a9781b30fb3be59006b5a549.zip | |
Merge pull request #1207 from degasus/hotfix
Report correct shader size.
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_shader_cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_cache.h b/src/video_core/renderer_opengl/gl_shader_cache.h index 44156dcab..658f9e994 100644 --- a/src/video_core/renderer_opengl/gl_shader_cache.h +++ b/src/video_core/renderer_opengl/gl_shader_cache.h | |||
| @@ -30,7 +30,7 @@ public: | |||
| 30 | 30 | ||
| 31 | /// Gets the size of the shader in guest memory, required for cache management | 31 | /// Gets the size of the shader in guest memory, required for cache management |
| 32 | size_t GetSizeInBytes() const { | 32 | size_t GetSizeInBytes() const { |
| 33 | return sizeof(GLShader::ProgramCode); | 33 | return GLShader::MAX_PROGRAM_CODE_LENGTH * sizeof(u64); |
| 34 | } | 34 | } |
| 35 | 35 | ||
| 36 | /// Gets the shader entries for the shader | 36 | /// Gets the shader entries for the shader |