blob: cb5ab2a6c4c70a318167be080d44dd347b35f108 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "glBuffers.h"
void
glBuffersBase::gen(GLsizei n, GLuint * ids)
{
glGenBuffers(n, ids);
}
void
glBuffersBase::del(GLsizei n, const GLuint * ids)
{
glDeleteBuffers(n, ids);
}
|