This change reverts PolyVox back to using Qt 4.8. This is expected to be a temporary change, required because moving to Qt 5 caused various complications on Windows which we are not yet ready to address.

For more details see here: https://bitbucket.org/volumesoffun/polyvox/issue/41/upgrade-to-qt-5
This commit is contained in:
David Williams
2014-05-05 20:29:52 +02:00
parent fe3f2d589e
commit 2da902d5f9
8 changed files with 52 additions and 39 deletions

View File

@ -29,7 +29,7 @@ distribution.
#include "glew/glew.h"
#include <QGLWidget>
#include <QOpenGLShaderProgram>
#include <QGLShaderProgram>
class OpenGLWidget : public QGLWidget
{
@ -57,7 +57,7 @@ private:
GLuint vertexBuffer;
GLuint vertexArrayObject;
QOpenGLShaderProgram shader;
QGLShaderProgram shader;
//Mouse data
QPoint m_LastFrameMousePos;