summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2014-10-26 02:56:13 -0200
committerGravatar Yuri Kunde Schlesner2014-10-26 16:18:05 -0200
commitd72708c1f58225f50c5ddecbd6f51580a2d9690b (patch)
tree10348ea70bd20a867daeff8433c004c38262e120 /src/video_core
parentFix compile errors in Clang (diff)
downloadyuzu-d72708c1f58225f50c5ddecbd6f51580a2d9690b.tar.gz
yuzu-d72708c1f58225f50c5ddecbd6f51580a2d9690b.tar.xz
yuzu-d72708c1f58225f50c5ddecbd6f51580a2d9690b.zip
Add `override` keyword through the code.
This was automated using `clang-modernize`.
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/renderer_opengl/renderer_opengl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/renderer_opengl/renderer_opengl.h b/src/video_core/renderer_opengl/renderer_opengl.h
index 82ef4b14b..eed201a95 100644
--- a/src/video_core/renderer_opengl/renderer_opengl.h
+++ b/src/video_core/renderer_opengl/renderer_opengl.h
@@ -21,19 +21,19 @@ public:
21 ~RendererOpenGL() override; 21 ~RendererOpenGL() override;
22 22
23 /// Swap buffers (render frame) 23 /// Swap buffers (render frame)
24 void SwapBuffers(); 24 void SwapBuffers() override;
25 25
26 /** 26 /**
27 * Set the emulator window to use for renderer 27 * Set the emulator window to use for renderer
28 * @param window EmuWindow handle to emulator window to use for rendering 28 * @param window EmuWindow handle to emulator window to use for rendering
29 */ 29 */
30 void SetWindow(EmuWindow* window); 30 void SetWindow(EmuWindow* window) override;
31 31
32 /// Initialize the renderer 32 /// Initialize the renderer
33 void Init(); 33 void Init() override;
34 34
35 /// Shutdown the renderer 35 /// Shutdown the renderer
36 void ShutDown(); 36 void ShutDown() override;
37 37
38private: 38private:
39 /// Structure used for storing information about the textures for each 3DS screen 39 /// Structure used for storing information about the textures for each 3DS screen