Render Buffer Object (RBO) wrapper.
More...
#include <renderbuffer.hpp>
Render Buffer Object (RBO) wrapper.
Definition at line 30 of file renderbuffer.hpp.
◆ attachment_type
Renderbuffer attachment type.
This enum is used to specify the type of attachment that the renderbuffer will be used for.
Enumerator |
---|
depth | |
stencil | |
depth_stencil | |
Definition at line 40 of file renderbuffer.hpp.
◆ renderbuffer() [1/3]
Construct a new renderbuffer object with the specified resolution, attachment type and sample count.
- Parameters
-
res | Resolution of the renderbuffer. |
type | Attachment type of the renderbuffer. |
samples | Sample count of the renderbuffer, defaults to 1. |
Definition at line 133 of file renderbuffer.hpp.
◆ ~renderbuffer()
staplegl::renderbuffer::~renderbuffer |
( |
| ) |
|
|
inline |
◆ renderbuffer() [2/3]
staplegl::renderbuffer::renderbuffer |
( |
const renderbuffer & |
| ) |
|
|
delete |
◆ renderbuffer() [3/3]
staplegl::renderbuffer::renderbuffer |
( |
renderbuffer && |
other | ) |
|
|
inlinenoexcept |
Construct a new renderbuffer object.
- Parameters
-
other | The renderbuffer object to move from. |
- Note
- Moving from a renderbuffer is cheap since it only involves copying the OpenGL ID, the
other
object will be left with an ID of 0.
Definition at line 170 of file renderbuffer.hpp.
◆ bind()
void staplegl::renderbuffer::bind |
( |
| ) |
const |
|
inline |
◆ id()
constexpr auto staplegl::renderbuffer::id |
( |
| ) |
const -> uint32_t |
|
inlineconstexprnoexcept |
Get the ID of the renderbuffer object.
- Returns
- uint32_t the ID of the renderbuffer object.
Definition at line 102 of file renderbuffer.hpp.
◆ operator=() [1/2]
◆ operator=() [2/2]
Move assignment operator.
- Parameters
-
other | The renderbuffer object to move from. |
- Returns
- renderbuffer& The moved object.
Definition at line 179 of file renderbuffer.hpp.
◆ res()
constexpr auto staplegl::renderbuffer::res |
( |
| ) |
const -> resolution |
|
inlineconstexprnoexcept |
Get the resolution of the renderbuffer object.
- Returns
- resolution A resolution object containing the width and height of the renderbuffer.
Definition at line 109 of file renderbuffer.hpp.
◆ samples()
constexpr auto staplegl::renderbuffer::samples |
( |
| ) |
const -> tex_samples |
|
inlineconstexprnoexcept |
Get the sample count of the renderbuffer object.
- Returns
- tex_samples The sample count of the renderbuffer object.
Definition at line 124 of file renderbuffer.hpp.
◆ type()
Get the attachment type of the renderbuffer object.
- Returns
- attachment_type The attachment type of the renderbuffer object.
Definition at line 117 of file renderbuffer.hpp.
◆ unbind()
void staplegl::renderbuffer::unbind |
( |
| ) |
const |
|
inline |
◆ m_id
uint32_t staplegl::renderbuffer::m_id {} |
|
private |
◆ m_res
◆ m_samples
◆ m_type
The documentation for this class was generated from the following file: