16 lines
245 B
C
16 lines
245 B
C
|
#include <GLES3/gl3.h>
|
||
|
#include <GL/glew.h>
|
||
|
|
||
|
#include "../defs.h"
|
||
|
|
||
|
#include <GL/gl.h>
|
||
|
#include <GLFW/glfw3.h>
|
||
|
#include <GL/glut.h>
|
||
|
#include <math.h>
|
||
|
|
||
|
// main renderer class
|
||
|
class RENDERER
|
||
|
{
|
||
|
public:
|
||
|
void render(GLFWwindow *window);
|
||
|
};
|