diff --git a/examples/debug/main.cpp b/examples/debug/main.cpp index 607299a..beca68d 100644 --- a/examples/debug/main.cpp +++ b/examples/debug/main.cpp @@ -37,6 +37,19 @@ int main(int argc, char** argv) oglu::LoadGLLoader((GLADloadproc)glfwGetProcAddress); oglu::SetViewport(0, 0, windowSize, windowSize); + float vertices[] = { + -0.5f, -0.5f, 0.0f, + 0.5f, -0.5f, 0.0f, + 0.0f, 0.5f, 0.0f + }; + + oglu::VertexAttribute topology[] = { + { 0, 3, GL_FLOAT, GL_FALSE, 3 * sizeof(float), (void*)0 } + }; + + oglu::Object(vertices, sizeof(vertices), nullptr, 0, topology, sizeof(topology)); + + while (!glfwWindowShouldClose(window)) { processInput(window); diff --git a/include/object.hpp b/include/object.hpp new file mode 100644 index 0000000..01b74e1 --- /dev/null +++ b/include/object.hpp @@ -0,0 +1,31 @@ +#ifndef DRAWABLE_HPP +#define DRAWABLE_HPP + +#include "core.hpp" +#include + +namespace oglu +{ + typedef struct { + GLuint index; + GLint size; + GLenum type; + GLboolean normalized; + GLsizei stride; + const GLvoid* pointer; + } VertexAttribute; + + class OGLU_API Object + { + public: + Object(); + Object(const GLfloat* vertices, size_t verticesSize, const GLuint* indices, size_t indicesSize, const VertexAttribute* topology, size_t topologySize); + + GLuint GetVAO() { return VAO; } + + private: + GLuint VAO; + }; +} + +#endif diff --git a/include/openglu.hpp b/include/openglu.hpp index 89fb145..009c664 100644 --- a/include/openglu.hpp +++ b/include/openglu.hpp @@ -5,6 +5,7 @@ #include #include "color.hpp" +#include "object.hpp" namespace oglu { diff --git a/src/object.cpp b/src/object.cpp new file mode 100644 index 0000000..ed9a02b --- /dev/null +++ b/src/object.cpp @@ -0,0 +1,21 @@ +#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); + } +} \ No newline at end of file