glcxx: A Modern C++ Interface to OpenGL Object Management
Buffer.hpp
Go to the documentation of this file.
1 
6 #ifndef GLCXX_BUFFER_HPP
7 #define GLCXX_BUFFER_HPP
8 
9 #include "glcxx/gl.hpp"
10 #include <memory>
11 #include <initializer_list>
12 
13 namespace glcxx
14 {
18  class Buffer
19  {
20  public:
24  Buffer();
25 
29  ~Buffer();
30 
39  void set_buffer_data(GLenum target, GLenum usage, const void * ptr, size_t size);
40 
48  void set_buffer_data(GLenum target, GLenum usage, std::initializer_list<GLfloat> data)
49  {
50  set_buffer_data(target, usage, &*data.begin(),
51  (uintptr_t)&*data.end() - (uintptr_t)&*data.begin());
52  }
53 
61  void set_buffer_data_d(GLenum target, GLenum usage, std::initializer_list<GLdouble> data)
62  {
63  set_buffer_data(target, usage, &*data.begin(),
64  (uintptr_t)&*data.end() - (uintptr_t)&*data.begin());
65  }
66 
72  GLuint id() const { return m_id; }
73 
77  void bind() const { glBindBuffer(m_target, m_id); }
78 
86  static std::shared_ptr<Buffer>
88  {
89  return std::make_shared<Buffer>();
90  }
91 
102  static std::shared_ptr<Buffer>
103  create(GLenum target, GLenum usage, const void * ptr, size_t size)
104  {
105  std::shared_ptr<Buffer> buffer = std::make_shared<Buffer>();
106  buffer->set_buffer_data(target, usage, ptr, size);
107  return buffer;
108  }
109 
117  static std::shared_ptr<Buffer>
118  create(GLenum target, GLenum usage,
119  std::initializer_list<GLfloat> data)
120  {
121  std::shared_ptr<Buffer> buffer = std::make_shared<Buffer>();
122  buffer->set_buffer_data(target, usage, data);
123  return buffer;
124  }
125 
133  static std::shared_ptr<Buffer>
134  create_d(GLenum target, GLenum usage,
135  std::initializer_list<GLdouble> data)
136  {
137  std::shared_ptr<Buffer> buffer = std::make_shared<Buffer>();
138  buffer->set_buffer_data_d(target, usage, data);
139  return buffer;
140  }
141 
142  protected:
146  GLuint m_id;
147 
151  GLenum m_target;
152 
156  void allocate();
157  };
158 };
159 
160 #endif
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&#39;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&#39;s data, target, and usage.
Definition: Buffer.hpp:48
Definition: Array.cpp:4
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&#39;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&#39;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&#39;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