OpenGL-utility/include/object.hpp

32 lines
529 B
C++
Raw Normal View History

2021-01-19 18:47:54 +00:00
#ifndef DRAWABLE_HPP
#define DRAWABLE_HPP
#include "core.hpp"
#include <glad/glad.h>
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