diff options
author | Lioncash <mathew1800@gmail.com> | 2019-03-11 17:02:28 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-03-11 17:02:30 +0100 |
commit | 1070c020db59af1d3baeca9988ffeda13c286bbb (patch) | |
tree | b7b4da5e2037d069fbea9dcdc6cd3335b20353ec | |
parent | Merge pull request #2207 from lioncash/hwopus (diff) | |
download | yuzu-1070c020db59af1d3baeca9988ffeda13c286bbb.tar yuzu-1070c020db59af1d3baeca9988ffeda13c286bbb.tar.gz yuzu-1070c020db59af1d3baeca9988ffeda13c286bbb.tar.bz2 yuzu-1070c020db59af1d3baeca9988ffeda13c286bbb.tar.lz yuzu-1070c020db59af1d3baeca9988ffeda13c286bbb.tar.xz yuzu-1070c020db59af1d3baeca9988ffeda13c286bbb.tar.zst yuzu-1070c020db59af1d3baeca9988ffeda13c286bbb.zip |
-rw-r--r-- | src/video_core/renderer_opengl/gl_global_cache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_global_cache.h b/src/video_core/renderer_opengl/gl_global_cache.h index 37830bb7c..b8f1f7c2e 100644 --- a/src/video_core/renderer_opengl/gl_global_cache.h +++ b/src/video_core/renderer_opengl/gl_global_cache.h @@ -30,12 +30,12 @@ public: explicit CachedGlobalRegion(VAddr addr, u32 size); /// Gets the address of the shader in guest memory, required for cache management - VAddr GetAddr() const { + VAddr GetAddr() const override { return addr; } /// Gets the size of the shader in guest memory, required for cache management - std::size_t GetSizeInBytes() const { + std::size_t GetSizeInBytes() const override { return size; } |