glcxx: A Modern C++ Interface to OpenGL Object Management
Array.hpp
Go to the documentation of this file.
1 
6 #ifndef GLCXX_ARRAY_HPP
7 #define GLCXX_ARRAY_HPP
8 
9 #include "glcxx/gl.hpp"
10 #include <memory>
11 
12 namespace glcxx
13 {
17  class Array
18  {
19  public:
23  Array();
24 
28  ~Array();
29 
33  void bind()
34  {
35  glBindVertexArray(m_id);
36  }
37 
43  GLuint id() const { return m_id; }
44 
50  static std::shared_ptr<Array>
52  {
53  return std::make_shared<Array>();
54  }
55 
56  protected:
60  GLuint m_id;
61  };
62 };
63 
64 #endif
~Array()
Destroy the vertex array object.
Definition: Array.cpp:18
C++ wrapper for an OpenGL vertex array object.
Definition: Array.hpp:17
Include module for the main OpenGL header.
Definition: Array.cpp:4
GLuint m_id
The vertex array object&#39;s ID.
Definition: Array.hpp:60
void bind()
Bind the vertex array object.
Definition: Array.hpp:33
Array()
Create and allocate an OpenGL vertex array object.
Definition: Array.cpp:6
static std::shared_ptr< Array > create()
Factory method to construct a Array.
Definition: Array.hpp:51
GLuint id() const
Get the vertex array object&#39;s ID.
Definition: Array.hpp:43