139 int32_t internal_format {};
142 case attachment_type::depth:
143 internal_format = GL_DEPTH_COMPONENT24;
145 case attachment_type::stencil:
146 internal_format = GL_STENCIL_INDEX8;
148 case attachment_type::depth_stencil:
149 internal_format = GL_DEPTH24_STENCIL8;
153 glGenRenderbuffers(1, &m_id);
154 glBindRenderbuffer(GL_RENDERBUFFER, m_id);
156 glRenderbufferStorageMultisample(GL_RENDERBUFFER,
static_cast<int32_t
>(m_samples), internal_format, res.width, res.height);
159 glRenderbufferStorage(GL_RENDERBUFFER, internal_format, res.width, res.height);
161 glBindRenderbuffer(GL_RENDERBUFFER, 0);
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.