Bbop-Library 0.4.1-alpha
Opengl library to build 2d apps and game that implement a light system named Lumop
 
Loading...
Searching...
No Matches
VBO.h
Go to the documentation of this file.
1/*
2 * VBO.h
3 *
4 * Ce programme est distribué sous les termes de la Licence Publique
5 * Générale GNU, version 3.0, telle que publiée par la Free Software
6 * Foundation. Consultez la Licence Publique Générale GNU pour plus de
7 * détails.
8 *
9 * Vous devez avoir reçu une copie de la Licence Publique Générale GNU
10 * en même temps que ce programme. Si ce n'est pas le cas, consultez
11 * <https://www.gnu.org/licenses/>.
12 */
13
14#ifndef VBO_CLASS_H
15#define VBO_CLASS_H
16
17#include <GL/glew.h>
18#include <GLFW/glfw3.h>
19
20
21class VBO
22{
23public:
24 // Reference ID of the Vertex Buffer Object
25 GLuint ID;
26 // Constructor that generates a Vertex Buffer Object and links it to vertices
27 VBO(GLfloat* vertices, GLsizeiptr size, GLenum typeVBO);
28 VBO();
29
30 void init(GLfloat* vertices, GLsizeiptr size, GLenum typeVBO);
31
32 // Binds the VBO
33 void Bind() const;
34 // Unbinds the VBO
35 void Unbind();
36 // Deletes the VBO
37 void Delete();
38 // change data of VBO
39 void update(GLfloat* vertices, GLsizeiptr size);
40};
41
42#endif
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