summaryrefslogtreecommitdiffstats
path: root/examples/opengl/legacy/overpainting/glwidget.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-05-18 10:31:33 +0200
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-05-23 08:59:14 +0000
commitcab7e7858ae97eedc122fdfa7df082cbdb590d7c (patch)
treefcbb972506722b3443cd4cbb62c5a7169e08fc5c /examples/opengl/legacy/overpainting/glwidget.h
parent4476966e0469dfdf372f6b1c119407acef37a6f2 (diff)
Make OpenGL legacy examples hellogl and overpainting work with Dynamic GL.
Call GL functions using QOpenGLFunctions_1_1. Task-number: QTBUG-46103 Change-Id: I1cbacf9c192c17d96d96aa861bb16e2918a0c053 Reviewed-by: Laszlo Agocs <laszlo.agocs@theqtcompany.com>
Diffstat (limited to 'examples/opengl/legacy/overpainting/glwidget.h')
-rw-r--r--examples/opengl/legacy/overpainting/glwidget.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/opengl/legacy/overpainting/glwidget.h b/examples/opengl/legacy/overpainting/glwidget.h
index dd5c0ba9ff..7e62a00170 100644
--- a/examples/opengl/legacy/overpainting/glwidget.h
+++ b/examples/opengl/legacy/overpainting/glwidget.h
@@ -42,13 +42,14 @@
#define GLWIDGET_H
#include <QGLWidget>
+#include <QOpenGLFunctions_1_1>
#include <QTimer>
class Bubble;
class QtLogo;
//! [0]
-class GLWidget : public QGLWidget
+class GLWidget : public QGLWidget, public QOpenGLFunctions_1_1
{
Q_OBJECT