From a57b8409a225ee2597768867c21774647f8e28bc Mon Sep 17 00:00:00 2001 From: Laszlo Agocs Date: Thu, 24 Apr 2014 14:36:57 +0200 Subject: Fix up examples for dynamic opengl builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Id311b00fe7783a3175dc1c4a38f627c78c470761 Reviewed-by: Jørgen Lind Reviewed-by: Friedemann Kleint --- examples/opengl/hellogl_es2/glwidget.cpp | 2 ++ examples/opengl/hellogl_es2/glwidget.h | 11 ++++++----- examples/opengl/hellowindow/hellowindow.cpp | 2 +- examples/opengl/opengl.pro | 8 ++++++-- 4 files changed, 15 insertions(+), 8 deletions(-) (limited to 'examples') diff --git a/examples/opengl/hellogl_es2/glwidget.cpp b/examples/opengl/hellogl_es2/glwidget.cpp index 7267cfd124..733475d321 100644 --- a/examples/opengl/hellogl_es2/glwidget.cpp +++ b/examples/opengl/hellogl_es2/glwidget.cpp @@ -171,6 +171,8 @@ void GLWidget::paintTexturedCube() void GLWidget::initializeGL () { + initializeOpenGLFunctions(); + glClearColor(0.1f, 0.1f, 0.2f, 1.0f); glGenTextures(1, &m_uiTexture); diff --git a/examples/opengl/hellogl_es2/glwidget.h b/examples/opengl/hellogl_es2/glwidget.h index 8ed86b1e01..00073aa047 100644 --- a/examples/opengl/hellogl_es2/glwidget.h +++ b/examples/opengl/hellogl_es2/glwidget.h @@ -42,15 +42,16 @@ #define GLWIDGET_H #include -#include -#include -#include +#include +#include +#include +#include #include #include class Bubble; -class GLWidget : public QGLWidget { - +class GLWidget : public QGLWidget, protected QOpenGLFunctions +{ Q_OBJECT public: GLWidget(QWidget *parent = 0); diff --git a/examples/opengl/hellowindow/hellowindow.cpp b/examples/opengl/hellowindow/hellowindow.cpp index 3b5971c0d3..b4dc4464ba 100644 --- a/examples/opengl/hellowindow/hellowindow.cpp +++ b/examples/opengl/hellowindow/hellowindow.cpp @@ -182,7 +182,7 @@ void Renderer::paintQtLogo() m_program->enableAttributeArray(vertexAttr); m_program->setAttributeArray(vertexAttr, vertices.constData()); m_program->setAttributeArray(normalAttr, normals.constData()); - glDrawArrays(GL_TRIANGLES, 0, vertices.size()); + m_context->functions()->glDrawArrays(GL_TRIANGLES, 0, vertices.size()); m_program->disableAttributeArray(normalAttr); m_program->disableAttributeArray(vertexAttr); } diff --git a/examples/opengl/opengl.pro b/examples/opengl/opengl.pro index 7bc96234df..aea281ce5c 100644 --- a/examples/opengl/opengl.pro +++ b/examples/opengl/opengl.pro @@ -2,7 +2,11 @@ requires(qtHaveModule(opengl)) TEMPLATE = subdirs -contains(QT_CONFIG, opengles2) { +contains(QT_CONFIG, dynamicgl) { + SUBDIRS = hellowindow \ + contextinfo \ + hellogl_es2 +} else: contains(QT_CONFIG, opengles2){ SUBDIRS = hellogl_es2 } else { SUBDIRS = 2dpainting \ @@ -14,7 +18,7 @@ contains(QT_CONFIG, opengles2) { samplebuffers } -SUBDIRS += hellowindow \ +!contains(QT_CONFIG, dynamicgl): SUBDIRS += hellowindow \ paintedwindow \ contextinfo \ cube \ -- cgit v1.2.3