summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/opengl/computegles31/glwindow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/opengl/computegles31/glwindow.h b/examples/opengl/computegles31/glwindow.h
index a55c5491be..15ece01780 100644
--- a/examples/opengl/computegles31/glwindow.h
+++ b/examples/opengl/computegles31/glwindow.h
@@ -68,9 +68,9 @@ public:
GLWindow();
~GLWindow();
- void initializeGL();
- void resizeGL(int w, int h);
- void paintGL();
+ void initializeGL() override;
+ void resizeGL(int w, int h) override;
+ void paintGL() override;
float blurRadius() const { return m_blurRadius; }
void setBlurRadius(float blurRadius);