StapleGL
Header-only C++20 OpenGL wrapper
|
Vertex Buffer Object (VBO) wrapper. More...
#include "gl_functions.hpp"
#include "vertex_buffer_layout.hpp"
#include <concepts>
#include <functional>
#include <span>
#include <utility>
Go to the source code of this file.
Classes | |
class | staplegl::vertex_buffer |
Vertex Buffer Object (VBO) wrapper. More... | |
Namespaces | |
namespace | staplegl |
Concepts | |
concept | staplegl::plain_old_data |
Concept that specifies that a type is a Plain Old Data (POD) type. | |
Enumerations | |
enum | staplegl::driver_draw_hint { staplegl::STATIC_DRAW = GL_STATIC_DRAW , staplegl::DYNAMIC_DRAW = GL_DYNAMIC_DRAW , staplegl::STREAM_DRAW = GL_STREAM_DRAW } |
Enum that specifies the usage hint of a buffer. More... | |
enum | staplegl::driver_access_specifier { staplegl::READ_ONLY = GL_READ_ONLY , staplegl::WRITE_ONLY = GL_WRITE_ONLY , staplegl::READ_WRITE = GL_READ_WRITE } |
Enum that specifies the access specifier of a buffer. More... | |
Vertex Buffer Object (VBO) wrapper.
Wraps VBOs allowing for easy creation and usage. Vertex buffer objects are GPU buffers that store an array of data that OpenGL uses to render primitives.
This data is stored in the GPU's memory and can be accessed by the GPU without the need to send it from the CPU every time it is needed. It is stored contiguously as one array of floats, hence the layout of the data must be specified to OpenGL by the user through a vertex buffer layout.
Definition in file vertex_buffer.hpp.