18#include <GLFW/glfw3.h>
27 VBO(GLfloat* vertices, GLsizeiptr size, GLenum typeVBO);
30 void init(GLfloat* vertices, GLsizeiptr size, GLenum typeVBO);
39 void update(GLfloat* vertices, GLsizeiptr size);
GLuint ID
Definition VBO.h:25
void init(GLfloat *vertices, GLsizeiptr size, GLenum typeVBO)
Definition VBO.cpp:31
void Unbind()
Definition VBO.cpp:44
void Bind() const
Definition VBO.cpp:38
void Delete()
Definition VBO.cpp:50
VBO(GLfloat *vertices, GLsizeiptr size, GLenum typeVBO)
Definition VBO.cpp:19
void update(GLfloat *vertices, GLsizeiptr size)
Definition VBO.cpp:55
VBO()
Definition VBO.cpp:26