15 lines
197 B
C
15 lines
197 B
C
|
#ifndef BATCH_H
|
||
|
#define BATCH_H
|
||
|
|
||
|
#include <GL/glew.h>
|
||
|
|
||
|
struct batch {
|
||
|
int id;
|
||
|
GLint vertex_array;
|
||
|
GLint vertex_buffer;
|
||
|
GLint indices_buffer;
|
||
|
GLint normals_buffer;
|
||
|
};
|
||
|
|
||
|
#endif
|