OpenGL-utility/src/object.cpp

21 lines
416 B
C++
Raw Normal View History

2021-01-19 18:47:54 +00:00
#include "object.hpp"
namespace oglu
{
Object::Object() :
VAO(0)
{
}
Object::Object(const GLfloat* vertices, size_t verticesSize,
const GLuint* indices, size_t indicesSize,
const VertexAttribute* topology, size_t topologySize) :
VAO(0)
{
GLuint VBO;
glGenBuffers(1, &VBO);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glBufferData(GL_ARRAY_BUFFER, verticesSize, vertices, GL_STATIC_DRAW);
}
}