109 glBindFramebuffer(GL_FRAMEBUFFER, 0);
131 auto status = glCheckFramebufferStatus(GL_FRAMEBUFFER);
133 return status == GL_FRAMEBUFFER_COMPLETE;
145 glBindFramebuffer(GL_READ_FRAMEBUFFER, src.
id());
146 glBindFramebuffer(GL_DRAW_FRAMEBUFFER, dst.
id());
148 glBlitFramebuffer(0, 0, res.
width, res.
height, 0, 0, res.
width, res.
height, GL_COLOR_BUFFER_BIT, GL_NEAREST);
150 glBindFramebuffer(GL_FRAMEBUFFER, 0);
158 [[nodiscard]]
constexpr auto id() const -> std::uint32_t
184 glGenFramebuffers(1, &
m_id);
190 glDeleteFramebuffers(1, &
m_id);
201 , m_attachment(other.m_attachment)
202 , m_renderbuffer(std::move(other.m_renderbuffer))
215 if (
this != &other) {
217 m_attachment = other.m_attachment;
218 m_renderbuffer = std::move(other.m_renderbuffer);
250 std::fprintf(stderr, STAPLEGL_LINEINFO
"invalid attachment enum %d for renderbuffer\n",
static_cast<std::uint32_t
>(
attachment));
258 glFramebufferRenderbuffer(GL_FRAMEBUFFER,
static_cast<std::uint32_t
>(type), GL_RENDERBUFFER,
m_renderbuffer->id());
284 glFramebufferRenderbuffer(GL_FRAMEBUFFER,
285 static_cast<std::uint32_t
>(type),
293 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0 + index, tex.
antialias().type, tex.
id(), 0);
308 glBindFramebuffer(GL_FRAMEBUFFER,
m_id);
313 glBindFramebuffer(GL_FRAMEBUFFER, 0);
Framebuffer Object (FBO) wrapper.
static void set_viewport(resolution res)
Resize the OpenGL viewport.
framebuffer() noexcept
Construct a new framebuffer::framebuffer object.
static void bind_default()
Bind the default framebuffer.
void set_renderbuffer(resolution res, fbo_attachment attachment=fbo_attachment::ATTACH_DEPTH_STENCIL_BUFFER, tex_samples samples=tex_samples::MSAA_X1)
Set the renderbuffer object.
auto operator=(const framebuffer &) -> framebuffer &=delete
constexpr auto get_renderbuffer() const -> const std::optional< renderbuffer > &
constexpr auto id() const -> std::uint32_t
Get the id of the framebuffer.
framebuffer(const framebuffer &)=delete
void set_texture(texture_2d const &tex, size_t index=0) const
Set a texture as the color attachment of the framebuffer.
static void transfer_data(framebuffer const &src, framebuffer const &dst, resolution res)
Transfer the contents of a framebuffer to another.
fbo_attachment m_attachment
static auto assert_completeness() -> bool
Check if the framebuffer is complete.
constexpr auto attachment() const -> fbo_attachment
std::optional< renderbuffer > m_renderbuffer
Render Buffer Object (RBO) wrapper.
attachment_type
Renderbuffer attachment type.
constexpr auto id() const -> std::uint32_t
Get the id of the texture object.
constexpr auto antialias() const -> texture_antialias
Get the texture antialias struct.
tex_samples
An enum that represents the number of samples for a texture.
fbo_attachment
enum class for framebuffer attachments.
@ ATTACH_DEPTH_STENCIL_BUFFER
Render Buffer Object (RBO) wrapper.
A struct that represents an image's dimensions.
Utility functions for parsing files.