17 lines
349 B
C
17 lines
349 B
C
#ifndef __OpenGLExample_OpenGLSupport_H__
|
|
#define __OpenGLExample_OpenGLSupport_H__
|
|
|
|
#include "PolyVoxForwardDeclarations.h"
|
|
|
|
#include "glew/glew.h"
|
|
|
|
struct OpenGLColour
|
|
{
|
|
GLfloat red;
|
|
GLfloat green;
|
|
GLfloat blue;
|
|
};
|
|
|
|
OpenGLColour convertMaterialIDToColour(PolyVox::uint8_t materialID);
|
|
|
|
#endif //__OpenGLExample_OpenGLSupport_H__
|