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

Vertex Array Object (VAO) wrapper. More...

#include "gl_functions.hpp"
#include "index_buffer.hpp"
#include "vertex_buffer.hpp"
#include "vertex_buffer_inst.hpp"
#include <cstdint>
#include <list>
#include <optional>
Include dependency graph for vertex_array.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  staplegl::vertex_array
 Vertex Array Object (VAO) wrapper. More...
 

Namespaces

namespace  staplegl
 

Detailed Description

Vertex Array Object (VAO) wrapper.

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

Vertex Array Object Wrapper.

Vertex Array Objects (VAOs) are OpenGL objects that store all of the state needed to supply vertex data to the GPU for a draw call.

This includes the format of the vertex data as well as the buffers containing the vertices and the indices specifying the order in which to render them.

See also
vertex_buffer
index_buffer
vertex_buffer_layout
https://www.khronos.org/opengl/wiki/Vertex_Specification#Vertex_Array_Object

Definition in file vertex_array.hpp.