diff options
author | Lioncash <mathew1800@gmail.com> | 2019-07-07 19:36:59 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-07-07 19:38:39 +0200 |
commit | 4b276806397c0a0fae551964970d0dee4bf6a081 (patch) | |
tree | 7713ceccc4ba4debffc7b82586f411d9bb52e70b | |
parent | Merge pull request #2674 from lioncash/reporter (diff) | |
download | yuzu-4b276806397c0a0fae551964970d0dee4bf6a081.tar yuzu-4b276806397c0a0fae551964970d0dee4bf6a081.tar.gz yuzu-4b276806397c0a0fae551964970d0dee4bf6a081.tar.bz2 yuzu-4b276806397c0a0fae551964970d0dee4bf6a081.tar.lz yuzu-4b276806397c0a0fae551964970d0dee4bf6a081.tar.xz yuzu-4b276806397c0a0fae551964970d0dee4bf6a081.tar.zst yuzu-4b276806397c0a0fae551964970d0dee4bf6a081.zip |
-rw-r--r-- | src/video_core/renderer_opengl/gl_sampler_cache.h | 4 | ||||
-rw-r--r-- | src/video_core/renderer_vulkan/vk_sampler_cache.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/renderer_opengl/gl_sampler_cache.h b/src/video_core/renderer_opengl/gl_sampler_cache.h index defbc2d81..34ee37f00 100644 --- a/src/video_core/renderer_opengl/gl_sampler_cache.h +++ b/src/video_core/renderer_opengl/gl_sampler_cache.h @@ -17,9 +17,9 @@ public: ~SamplerCacheOpenGL(); protected: - OGLSampler CreateSampler(const Tegra::Texture::TSCEntry& tsc) const; + OGLSampler CreateSampler(const Tegra::Texture::TSCEntry& tsc) const override; - GLuint ToSamplerType(const OGLSampler& sampler) const; + GLuint ToSamplerType(const OGLSampler& sampler) const override; }; } // namespace OpenGL diff --git a/src/video_core/renderer_vulkan/vk_sampler_cache.h b/src/video_core/renderer_vulkan/vk_sampler_cache.h index 771b05c73..e492ef06c 100644 --- a/src/video_core/renderer_vulkan/vk_sampler_cache.h +++ b/src/video_core/renderer_vulkan/vk_sampler_cache.h @@ -21,9 +21,9 @@ public: ~VKSamplerCache(); protected: - UniqueSampler CreateSampler(const Tegra::Texture::TSCEntry& tsc) const; + UniqueSampler CreateSampler(const Tegra::Texture::TSCEntry& tsc) const override; - vk::Sampler ToSamplerType(const UniqueSampler& sampler) const; + vk::Sampler ToSamplerType(const UniqueSampler& sampler) const override; private: const VKDevice& device; |