paysages3d/src/render/opengl/opengl_global.h
Michaël Lemaire e346f07c22 Merge branch 'master' into vegetation
Conflicts:
	src/render/opengl/OpenGLRenderer.cpp
	src/render/opengl/OpenGLRenderer.h
	src/render/opengl/OpenGLShaderProgram.cpp
	src/render/opengl/OpenGLShaderProgram.h
	src/render/opengl/OpenGLSharedState.cpp
2015-12-04 00:04:07 +01:00

36 lines
800 B
C++

#ifndef OPENGL_GLOBAL_H
#define OPENGL_GLOBAL_H
#include "software_global.h"
#if defined(OPENGL_LIBRARY)
#define OPENGLSHARED_EXPORT Q_DECL_EXPORT
#else
#define OPENGLSHARED_EXPORT Q_DECL_IMPORT
#endif
namespace paysages {
namespace opengl {
class WidgetExplorer;
class OpenGLRenderer;
class OpenGLShaderProgram;
class OpenGLSharedState;
class OpenGLVariable;
class OpenGLSkybox;
class OpenGLWater;
class OpenGLTerrain;
class OpenGLVegetation;
class OpenGLVegetationLayer;
class OpenGLVegetationInstance;
class OpenGLVegetationImpostor;
class ExplorerChunkTerrain;
template <typename Vertex> class VertexArray;
}
}
using namespace paysages::opengl;
#define OpenGLFunctions QOpenGLFunctions_3_0
//#define OpenGLFunctions QOpenGLFunctions_3_3_Core
class OpenGLFunctions;
#endif // OPENGL_GLOBAL_H