OpenGL-utility/include/object.hpp

46 lines
1 KiB
C++
Raw Normal View History

2021-01-19 18:47:54 +00:00
#ifndef DRAWABLE_HPP
#define DRAWABLE_HPP
#include <core.hpp>
2021-01-19 18:47:54 +00:00
#include <glad/glad.h>
namespace oglu
{
2021-01-19 23:18:31 +00:00
typedef OGLU_API struct {
2021-01-19 18:47:54 +00:00
GLuint index;
GLint size;
GLenum type;
GLboolean normalized;
GLsizei stride;
const GLvoid* pointer;
} VertexAttribute;
class OGLU_API AbstractObject
2021-01-19 18:47:54 +00:00
{
public:
AbstractObject(const AbstractObject& other);
2021-01-21 00:21:14 +00:00
~AbstractObject();
friend std::shared_ptr<AbstractObject> OGLU_API MakeObject(const GLfloat* vertices, size_t verticesSize, const GLuint* indices, size_t indicesSize, const VertexAttribute* topology, size_t topologySize);
2021-01-19 18:47:54 +00:00
GLuint GetVAO() { return VAO; }
2021-01-20 15:51:55 +00:00
void Bind();
void Unbind();
void Draw();
void BindAndDraw();
2021-01-19 18:47:54 +00:00
private:
AbstractObject(const GLfloat* vertices, size_t verticesSize, const GLuint* indices, size_t indicesSize, const VertexAttribute* topology, size_t topologySize);
2021-01-20 15:51:55 +00:00
inline void RegisterVertexAttribPointer(GLuint index, const VertexAttribute& topology);
2021-01-19 18:47:54 +00:00
GLuint VAO;
2021-01-20 15:51:55 +00:00
GLsizei count;
2021-01-19 18:47:54 +00:00
};
typedef std::shared_ptr<AbstractObject> Object;
2021-01-19 18:47:54 +00:00
}
#endif