mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
Remove unnecessary virtual keywords
This commit is contained in:
parent
567d0b20fa
commit
7ee0e75633
38 changed files with 211 additions and 207 deletions
|
@ -17,8 +17,8 @@ namespace OGL
|
|||
GLVertexFormat();
|
||||
~GLVertexFormat();
|
||||
|
||||
virtual void Initialize(const PortableVertexDeclaration &_vtx_decl) override;
|
||||
virtual void SetupVertexPointers() override;
|
||||
void Initialize(const PortableVertexDeclaration &_vtx_decl) override;
|
||||
void SetupVertexPointers() override;
|
||||
|
||||
GLuint VAO;
|
||||
};
|
||||
|
@ -39,7 +39,7 @@ public:
|
|||
GLuint m_index_buffers;
|
||||
GLuint m_last_vao;
|
||||
protected:
|
||||
virtual void ResetBuffer(u32 stride) override;
|
||||
void ResetBuffer(u32 stride) override;
|
||||
|
||||
private:
|
||||
void Draw(u32 stride);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue