diff options
author | Jose Fonseca <jfonseca@vmware.com> | 2016-03-05 14:45:05 +0000 |
---|---|---|
committer | Jose Fonseca <jfonseca@vmware.com> | 2016-03-05 16:58:20 +0000 |
commit | 41539b601ff78aeb01d9577514a8f90bab0cb821 (patch) | |
tree | 4f79b68b231f173bced97ce56ed083452636bb47 /retrace/glws_egl_xlib.cpp | |
parent | 6ca9340d3c515a153d991050640d19dc28ffb176 (diff) |
retrace: clang-modernize.
Diffstat (limited to 'retrace/glws_egl_xlib.cpp')
-rw-r--r-- | retrace/glws_egl_xlib.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/retrace/glws_egl_xlib.cpp b/retrace/glws_egl_xlib.cpp index f4c363c3..f5921a9b 100644 --- a/retrace/glws_egl_xlib.cpp +++ b/retrace/glws_egl_xlib.cpp @@ -155,7 +155,7 @@ public: } void - resize(int w, int h) { + resize(int w, int h) override { if (w == width && h == height) { return; } @@ -195,7 +195,7 @@ public: assert(eglHeight == height); } - void show(void) { + void show(void) override { if (visible) { return; } @@ -209,7 +209,7 @@ public: Drawable::show(); } - void swapBuffers(void) { + void swapBuffers(void) override { bindAPI(api); eglSwapBuffers(eglDisplay, surface); processKeys(window); |