blob: bcecac6f29c5a11e7f1b3b8d05bfd17fb760979d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef EVENTS_RENDER_HPP_
#define EVENTS_RENDER_HPP_
struct NewRenderEvent
{
GLuint vbo;
GLuint tex;
GLuint normal;
unsigned int vertex;
NewRenderEvent(GLuint _vbo, GLuint _tex, GLuint _normal, unsigned int _vertex) :
vbo(_vbo), tex(_tex), normal(_normal), vertex(_vertex) {}
};
#endif // EVENTS_RENDER_HPP_
|