Framebuffer Object (FBO) wrapper.
More...
#include <framebuffer.hpp>
Framebuffer Object (FBO) wrapper.
- Examples
- teapot.cpp.
Definition at line 51 of file framebuffer.hpp.
◆ framebuffer() [1/3]
staplegl::framebuffer::framebuffer |
( |
| ) |
|
|
inlinenoexcept |
◆ ~framebuffer()
staplegl::framebuffer::~framebuffer |
( |
| ) |
|
|
inline |
◆ framebuffer() [2/3]
staplegl::framebuffer::framebuffer |
( |
const framebuffer & |
| ) |
|
|
delete |
◆ framebuffer() [3/3]
staplegl::framebuffer::framebuffer |
( |
framebuffer && |
other | ) |
|
|
inlinenoexcept |
◆ assert_completeness()
static auto staplegl::framebuffer::assert_completeness |
( |
| ) |
-> bool
|
|
inlinestatic |
Check if the framebuffer is complete.
asserts whether a framebuffer is complete, e.g.: ready to be used for rendering. The specifics of what makes a framebuffer complete are well-defined in the OpenGL specification and available in the link below.
- Warning
- this function requires the framebuffer to be bound.
- See also
- https://www.khronos.org/opengl/wiki/Framebuffer_Object#Framebuffer_Completeness
- Returns
- true if the framebuffer is complete.
-
false otherwise.
Definition at line 129 of file framebuffer.hpp.
◆ attachment()
constexpr auto staplegl::framebuffer::attachment |
( |
| ) |
const -> fbo_attachment
|
|
inlineconstexpr |
◆ bind()
void staplegl::framebuffer::bind |
( |
| ) |
const |
|
inline |
◆ bind_default()
static void staplegl::framebuffer::bind_default |
( |
| ) |
|
|
inlinestatic |
Bind the default framebuffer.
Calling this function is equivalent to calling unbind on any framebuffer object, however, it is semantically more correct to call this function when you want to bind the default framebuffer (even if no framebuffer object exists).
- Examples
- teapot.cpp.
Definition at line 107 of file framebuffer.hpp.
◆ get_renderbuffer()
constexpr auto staplegl::framebuffer::get_renderbuffer |
( |
| ) |
const -> const std::optional<renderbuffer>& |
|
constexpr |
◆ id()
constexpr auto staplegl::framebuffer::id |
( |
| ) |
const -> std::uint32_t
|
|
inlineconstexpr |
Get the id of the framebuffer.
- Returns
- std::uint32_t the id of the framebuffer.
Definition at line 158 of file framebuffer.hpp.
◆ operator=() [1/2]
◆ operator=() [2/2]
Move assignment operator.
- Parameters
-
other | the other framebuffer object to move from. |
- Returns
- framebuffer& the reference to this object.
Definition at line 213 of file framebuffer.hpp.
◆ set_renderbuffer()
Set the renderbuffer object.
Attach a renderbuffer to the framebuffer.
- Parameters
-
res | The resolution of the renderbuffer object. |
attachment | the type of attachment (Depth buffer, Stencil Buffer, Both, None). |
- Note
- passing staplegl::fbo_attachment::NONE results in the removal of any renderbuffer from the FBO.
-
this function destroys any previously held renderbuffer.
- See also
- staplegl::fbo_attachment
- Parameters
-
res | the resolution of the renderbuffer. |
attachment | the type of the renderbuffer. |
- Warning
- the framebuffer MUST be bound before calling this function.
Definition at line 232 of file framebuffer.hpp.
◆ set_texture()
void staplegl::framebuffer::set_texture |
( |
staplegl::texture_2d const & |
tex, |
|
|
size_t |
index = 0 |
|
) |
| const |
|
inline |
Set a texture as the color attachment of the framebuffer.
Uses the ID contained in the staplegl::texture_2d
object to attach it to the framebuffer,
- Note
- the framebuffer must be bound before calling this function.
- Warning
- the framebuffer does not take ownership of the texture, hence care must be taken to ensure that the texture is not destroyed before the framebuffer.
- Parameters
-
tex | a texture_2d to attach to the framebuffer. |
index | the index of the color attachment to use, used as an offset from GL_COLOR_ATTACHMENT0 . |
Definition at line 290 of file framebuffer.hpp.
◆ set_viewport()
Resize the OpenGL viewport.
- Note
- this does not resize held textures, but it's faster.
- Parameters
-
Definition at line 296 of file framebuffer.hpp.
◆ transfer_data()
Transfer the contents of a framebuffer to another.
- Parameters
-
src | The source framebuffer. |
dst | The destination framebuffer. |
res | The resolution of the framebuffer. |
- Examples
- teapot.cpp.
Definition at line 143 of file framebuffer.hpp.
◆ unbind()
void staplegl::framebuffer::unbind |
( |
| ) |
|
|
inlinestatic |
◆ m_attachment
◆ m_id
std::uint32_t staplegl::framebuffer::m_id {} |
|
private |
◆ m_renderbuffer
std::optional<renderbuffer> staplegl::framebuffer::m_renderbuffer {} |
|
private |
The documentation for this class was generated from the following file: