blob: 372b49b362ade02f46fd5a9217414624cf59c3c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "glVertexArrays.h"
void
glVertexArraysBase::gen(GLsizei n, GLuint * ids)
{
glGenVertexArrays(n, ids);
}
void
glVertexArraysBase::del(GLsizei n, const GLuint * ids)
{
glDeleteVertexArrays(n, ids);
}
|