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

Element Buffer Object (EBO) wrapper. More...

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

Go to the source code of this file.

Classes

class  staplegl::index_buffer
 Element Buffer Object (EBO) wrapper. More...
 

Namespaces

namespace  staplegl
 

Detailed Description

Element Buffer Object (EBO) wrapper.

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

Wraps EBOs allowing for easy creation and usage. Element buffer objects are GPU buffers that store indices that OpenGL uses to figure out the order in which to render primitives that are stored in a VBO.

This class allows simple creation and management of EBOs with RAII semantics.

See also
vertex_buffer
https://www.khronos.org/opengl/wiki/Vertex_Specification#Element_Buffer_Object

Definition in file index_buffer.hpp.