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

Uniform Buffer Object (UBO) wrapper. More...

#include "gl_functions.hpp"
#include "vertex_buffer_layout.hpp"
#include <span>
#include <string_view>
#include <unordered_map>
#include <utility>
Include dependency graph for uniform_buffer.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  staplegl::uniform_buffer
 Uniform Buffer Object (UBO) wrapper. More...
 

Namespaces

namespace  staplegl
 

Detailed Description

Uniform Buffer Object (UBO) wrapper.

Author
Dario Loi
Date
2023-08-24

Wraps UBOs allowing for easy creation and usage. Uniform buffer objects are GPU buffers that store uniform data that can be shared between multiple shader programs.

Uniform blocks usually contain data that is used to configure the rendering pipeline, such as light data, material data, etc.

Definition in file uniform_buffer.hpp.