mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-01 15:16:22 +00:00
Make overriding explicit and remove redundant virtual specifiers on overriding destructors - Core & UnitTests
This commit is contained in:
parent
0b0151770a
commit
f240e20e3f
130 changed files with 195 additions and 199 deletions
|
@ -17,7 +17,7 @@ class OGLGfx final : public AbstractGfx
|
|||
{
|
||||
public:
|
||||
OGLGfx(std::unique_ptr<GLContext> main_gl_context, float backbuffer_scale);
|
||||
~OGLGfx();
|
||||
~OGLGfx() override;
|
||||
|
||||
bool IsHeadless() const override;
|
||||
|
||||
|
@ -67,9 +67,9 @@ public:
|
|||
void WaitForGPUIdle() override;
|
||||
void OnConfigChanged(u32 bits) override;
|
||||
|
||||
virtual void SelectLeftBuffer() override;
|
||||
virtual void SelectRightBuffer() override;
|
||||
virtual void SelectMainBuffer() override;
|
||||
void SelectLeftBuffer() override;
|
||||
void SelectRightBuffer() override;
|
||||
void SelectMainBuffer() override;
|
||||
|
||||
std::unique_ptr<VideoCommon::AsyncShaderCompiler> CreateAsyncShaderCompiler() override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue