StapleGL
Header-only C++20 OpenGL wrapper
Loading...
Searching...
No Matches
renderbuffer.hpp
Go to the documentation of this file.
1
17#pragma once
18
19#include "gl_functions.hpp"
20#include "utility.hpp"
21
22#include <cstdint>
23
24namespace staplegl {
25
31
32public:
40 enum class attachment_type : uint32_t {
41 depth = GL_DEPTH_ATTACHMENT,
42 stencil = GL_STENCIL_ATTACHMENT,
43 depth_stencil = GL_DEPTH_STENCIL_ATTACHMENT
44 };
45
56
62
63 renderbuffer(const renderbuffer&) = delete;
64 auto operator=(const renderbuffer&) -> renderbuffer& = delete;
65
75 renderbuffer(renderbuffer&& other) noexcept;
76
83 auto operator=(renderbuffer&& other) noexcept -> renderbuffer&;
84
89 void bind() const;
90
95 void unbind() const;
96
102 [[nodiscard]] constexpr auto id() const noexcept -> uint32_t { return m_id; }
103
109 [[nodiscard]] constexpr auto res() const noexcept -> resolution { return m_res; }
110
117 [[nodiscard]] constexpr auto type() const noexcept -> attachment_type { return m_type; }
118
124 [[nodiscard]] constexpr auto samples() const noexcept -> tex_samples { return m_samples; }
125
126private:
127 uint32_t m_id {};
131};
132
134 : m_res(res)
135 , m_type(type)
136 , m_samples(samples)
137{
138
139 int32_t internal_format {};
140
141 switch (m_type) {
142 case attachment_type::depth:
143 internal_format = GL_DEPTH_COMPONENT24;
144 break;
145 case attachment_type::stencil:
146 internal_format = GL_STENCIL_INDEX8;
147 break;
148 case attachment_type::depth_stencil:
149 internal_format = GL_DEPTH24_STENCIL8;
150 break;
151 }
152
153 glGenRenderbuffers(1, &m_id);
154 glBindRenderbuffer(GL_RENDERBUFFER, m_id);
155 if(m_samples != tex_samples::MSAA_X1) {
156 glRenderbufferStorageMultisample(GL_RENDERBUFFER, static_cast<int32_t>(m_samples), internal_format, res.width, res.height);
157 }
158 else {
159 glRenderbufferStorage(GL_RENDERBUFFER, internal_format, res.width, res.height);
160 }
161 glBindRenderbuffer(GL_RENDERBUFFER, 0);
162}
163
165{
166 if (m_id != 0)
167 glDeleteRenderbuffers(1, &m_id);
168}
169
171 : m_id(other.m_id)
172 , m_res(other.m_res)
173 , m_type(other.m_type)
174 , m_samples(other.m_samples)
175{
176 other.m_id = 0;
177}
178
179inline auto renderbuffer::operator=(renderbuffer&& other) noexcept -> renderbuffer&
180{
181 if (this != &other) {
182 m_id = other.m_id;
183 m_res = other.m_res;
184 m_type = other.m_type;
185 m_samples = other.m_samples;
186
187 other.m_id = 0;
188 }
189
190 return *this;
191}
192
193inline void renderbuffer::bind() const
194{
195 glBindRenderbuffer(GL_RENDERBUFFER, m_id);
196}
197
198inline void renderbuffer::unbind() const
199{
200 glBindRenderbuffer(GL_RENDERBUFFER, 0);
201}
202
203} // namespace staplegl
Render Buffer Object (RBO) wrapper.
renderbuffer(const renderbuffer &)=delete
attachment_type
Renderbuffer attachment type.
constexpr auto samples() const noexcept -> tex_samples
Get the sample count of the renderbuffer object.
constexpr auto id() const noexcept -> uint32_t
Get the ID of the renderbuffer object.
constexpr auto res() const noexcept -> resolution
Get the resolution of the renderbuffer object.
constexpr auto type() const noexcept -> attachment_type
Get the attachment type of the renderbuffer object.
void unbind() const
Unbind the renderbuffer object.
renderbuffer(resolution res, attachment_type type=attachment_type::depth_stencil, tex_samples samples=tex_samples::MSAA_X1) noexcept
Construct a new renderbuffer object with the specified resolution, attachment type and sample count.
~renderbuffer()
Destroy the renderbuffer object.
auto operator=(const renderbuffer &) -> renderbuffer &=delete
void bind() const
Bind the renderbuffer object.
Loads OpenGL functions.
tex_samples
An enum that represents the number of samples for a texture.
Definition utility.hpp:38
A struct that represents an image's dimensions.
Definition utility.hpp:28
Utility functions for parsing files.