glcxx: A Modern C++ Interface to OpenGL Object Management
Texture.hpp
Go to the documentation of this file.
1 
6 #ifndef GLCXX_TEXTURE_HPP
7 #define GLCXX_TEXTURE_HPP
8 
9 #include "glcxx/gl.hpp"
10 #include <memory>
11 
12 namespace glcxx
13 {
17  class Texture
18  {
19  public:
23  Texture();
24 
28  ~Texture();
29 
35  GLuint id() const { return m_id; }
36 
40  void bind(GLenum target) const { glBindTexture(target, m_id); }
41 
47  static std::shared_ptr<Texture>
49  {
50  return std::make_shared<Texture>();
51  }
52 
60  static uint32_t next_power_of_2(uint32_t n);
61 
62  protected:
66  GLuint m_id;
67 
71  void allocate();
72  };
73 };
74 
75 #endif
GLuint m_id
The texture object&#39;s ID.
Definition: Texture.hpp:66
GLuint id() const
Get the texture object&#39;s ID.
Definition: Texture.hpp:35
Include module for the main OpenGL header.
Definition: Array.cpp:4
void allocate()
Allocate the OpenGL texture object.
Definition: Texture.cpp:16
Texture()
Construct and allocate an OpenGL texture object.
Definition: Texture.cpp:6
static uint32_t next_power_of_2(uint32_t n)
Return the lowest power-of-2 integer greater than or equal to n.
Definition: Texture.cpp:26
void bind(GLenum target) const
Bind the texture object.
Definition: Texture.hpp:40
static std::shared_ptr< Texture > create()
Factory method to construct a Texture.
Definition: Texture.hpp:48
C++ wrapper for an OpenGL texture object.
Definition: Texture.hpp:17
~Texture()
Destroy the texture object.
Definition: Texture.cpp:11