mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 15:45:46 +00:00
video_core: Add missing override specifiers
This commit is contained in:
parent
fcf404c244
commit
85a4cb423d
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue