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

Vertex Buffer Object (VBO) wrapper. More...

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

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...
 

Detailed Description

Vertex Buffer Object (VBO) wrapper.

Authors
Christian Panov, Dario Loi
Date
2023-04-28

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.

See also
vertex_buffer_layout.hpp
https://www.khronos.org/opengl/wiki/Vertex_Specification#Vertex_Buffer_Object

Definition in file vertex_buffer.hpp.