1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-03-15 07:29:15 +01:00

Change to GLC_lib to make it compile on Windows with Qt 4.8.0

This commit is contained in:
Oleg Semyonov 2012-02-16 01:17:56 +02:00
parent 4b06f68f11
commit b02b64ece9
2 changed files with 10 additions and 0 deletions

View File

@ -35,6 +35,11 @@
#include "glu.h"
#endif
#if defined(Q_OS_WIN32)
#include "GL/gl.h"
#include "GL/glu.h"
#endif
#if !defined(Q_OS_MAC)
// ARB_vertex_buffer_object
extern PFNGLBINDBUFFERARBPROC glBindBuffer;

View File

@ -30,6 +30,11 @@
#include "glu.h"
#endif
#if defined(Q_OS_WIN32)
#include "GL/gl.h"
#include "GL/glu.h"
#endif
#include <QtDebug>
using namespace glc;