summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/android/qandroidplatformopenglcontext.h
diff options
context:
space:
mode:
authorAlexander Volkov <a.volkov@rusbitech.ru>2016-11-27 11:00:50 +0300
committerAlexander Volkov <a.volkov@rusbitech.ru>2016-11-29 15:29:28 +0000
commite3ad43843a6ddb20c901b6fba85c12fb0e6c5651 (patch)
tree9e620e82aebaa92766a9972b6557f580d8e257ae /src/plugins/platforms/android/qandroidplatformopenglcontext.h
parentc2446cb7df1466e9252f691567133295e4101c44 (diff)
Android: Add missing override
Change-Id: I70b802517d8f7d129ffb71dc3e92cb2458a55acc Reviewed-by: BogDan Vatra <bogdan@kdab.com>
Diffstat (limited to 'src/plugins/platforms/android/qandroidplatformopenglcontext.h')
-rw-r--r--src/plugins/platforms/android/qandroidplatformopenglcontext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/platforms/android/qandroidplatformopenglcontext.h b/src/plugins/platforms/android/qandroidplatformopenglcontext.h
index d3f6cf13a4..87a0829655 100644
--- a/src/plugins/platforms/android/qandroidplatformopenglcontext.h
+++ b/src/plugins/platforms/android/qandroidplatformopenglcontext.h
@@ -49,11 +49,11 @@ class QAndroidPlatformOpenGLContext : public QEGLPlatformContext
{
public:
QAndroidPlatformOpenGLContext(const QSurfaceFormat &format, QPlatformOpenGLContext *share, EGLDisplay display);
- void swapBuffers(QPlatformSurface *surface);
- bool makeCurrent(QPlatformSurface *surface);
+ void swapBuffers(QPlatformSurface *surface) override;
+ bool makeCurrent(QPlatformSurface *surface) override;
private:
- virtual EGLSurface eglSurfaceForPlatformSurface(QPlatformSurface *surface);
+ EGLSurface eglSurfaceForPlatformSurface(QPlatformSurface *surface) override;
static bool needsFBOReadBackWorkaround();
};