6 #ifndef GLCXX_BUFFER_HPP 7 #define GLCXX_BUFFER_HPP 11 #include <initializer_list> 39 void set_buffer_data(GLenum target, GLenum usage,
const void * ptr,
size_t size);
48 void set_buffer_data(GLenum target, GLenum usage, std::initializer_list<GLfloat> data)
51 (uintptr_t)&*data.end() - (uintptr_t)&*data.begin());
64 (uintptr_t)&*data.end() - (uintptr_t)&*data.begin());
86 static std::shared_ptr<Buffer>
89 return std::make_shared<Buffer>();
102 static std::shared_ptr<Buffer>
103 create(GLenum target, GLenum usage,
const void * ptr,
size_t size)
105 std::shared_ptr<Buffer> buffer = std::make_shared<Buffer>();
106 buffer->set_buffer_data(target, usage, ptr, size);
117 static std::shared_ptr<Buffer>
119 std::initializer_list<GLfloat> data)
121 std::shared_ptr<Buffer> buffer = std::make_shared<Buffer>();
122 buffer->set_buffer_data(target, usage, data);
133 static std::shared_ptr<Buffer>
135 std::initializer_list<GLdouble> data)
137 std::shared_ptr<Buffer> buffer = std::make_shared<Buffer>();
138 buffer->set_buffer_data_d(target, usage, data);
void bind() const
Bind the buffer object.
Definition: Buffer.hpp:77
GLenum m_target
The target for binding the buffer.
Definition: Buffer.hpp:151
C++ wrapper for an OpenGL buffer object.
Definition: Buffer.hpp:18
void set_buffer_data_d(GLenum target, GLenum usage, std::initializer_list< GLdouble > data)
Set the buffer's data, target, and usage.
Definition: Buffer.hpp:61
Buffer()
Construct and allocate an OpenGL buffer object.
Definition: Buffer.cpp:6
Include module for the main OpenGL header.
void set_buffer_data(GLenum target, GLenum usage, std::initializer_list< GLfloat > data)
Set the buffer's data, target, and usage.
Definition: Buffer.hpp:48
static std::shared_ptr< Buffer > create(GLenum target, GLenum usage, const void *ptr, size_t size)
Factory method to construct a Buffer and fill it with data.
Definition: Buffer.hpp:103
GLuint id() const
Get the buffer object's ID.
Definition: Buffer.hpp:72
static std::shared_ptr< Buffer > create()
Factory method to construct a Buffer.
Definition: Buffer.hpp:87
static std::shared_ptr< Buffer > create(GLenum target, GLenum usage, std::initializer_list< GLfloat > data)
Factory method to construct a Buffer and fill it with data.
Definition: Buffer.hpp:118
~Buffer()
Destroy the buffer object.
Definition: Buffer.cpp:11
GLuint m_id
The buffer object's ID.
Definition: Buffer.hpp:146
void allocate()
Allocate the OpenGL buffer object.
Definition: Buffer.cpp:23
void set_buffer_data(GLenum target, GLenum usage, const void *ptr, size_t size)
Set the buffer's data, target, and usage.
Definition: Buffer.cpp:16
static std::shared_ptr< Buffer > create_d(GLenum target, GLenum usage, std::initializer_list< GLdouble > data)
Factory method to construct a Buffer and fill it with data.
Definition: Buffer.hpp:134