StapleGL
Header-only C++20 OpenGL wrapper
Loading...
Searching...
No Matches
renderbuffer.hpp File Reference

Render Buffer Object (RBO) wrapper. More...

#include "gl_functions.hpp"
#include "utility.hpp"
#include <cstdint>
Include dependency graph for renderbuffer.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  staplegl::renderbuffer
 Render Buffer Object (RBO) wrapper. More...
 

Namespaces

namespace  staplegl
 

Detailed Description

Render Buffer Object (RBO) wrapper.

Author
Dario Loi
Date
2023-08-25

Wraps RBOs allowing for easy creation and usage. Render buffer objects are GPU buffers that hold screen data (similar to a texture), but they are under the guarantee that the user will never need to read from them, this allows OpenGL to optimize them for rendering use (for example, by storing Z-Buffer and Stencil data in a single buffer, in an efficient format).

Definition in file renderbuffer.hpp.