StapleGL
Header-only C++20 OpenGL wrapper
|
Vertex attribute. More...
#include <vertex_buffer_layout.hpp>
Public Member Functions | |
vertex_attribute ()=default | |
~vertex_attribute ()=default | |
vertex_attribute (shader_data_type::u_type in_type, std::string_view in_name) | |
vertex_attribute (shader_data_type::shader_array_type in_type, std::string_view in_name, size_t element_count) | |
vertex_attribute (const vertex_attribute &) noexcept=default | |
auto | operator= (const vertex_attribute &) noexcept -> vertex_attribute &=default |
vertex_attribute (vertex_attribute &&) noexcept=default | |
auto | operator= (vertex_attribute &&) noexcept -> vertex_attribute &=default |
Public Attributes | |
std::string | name |
std::size_t | element_count { 1 } |
std::uint32_t | offset {} |
shader_data_type::u_type | type {} |
Vertex attribute.
Represents a single vertex attribute, that is, a type that is used to compose a vertex buffer layout, the struct contains the type of the attribute, the name of the attribute (for debugging purposes) and the offset of the attribute in the vertex buffer.
Definition at line 37 of file vertex_buffer_layout.hpp.
|
default |
|
default |
|
inline |
Definition at line 46 of file vertex_buffer_layout.hpp.
|
inline |
Definition at line 52 of file vertex_buffer_layout.hpp.
|
defaultnoexcept |
|
defaultnoexcept |
|
defaultnoexcept |
|
defaultnoexcept |
std::size_t staplegl::vertex_attribute::element_count { 1 } |
Definition at line 39 of file vertex_buffer_layout.hpp.
std::string staplegl::vertex_attribute::name |
Definition at line 38 of file vertex_buffer_layout.hpp.
std::uint32_t staplegl::vertex_attribute::offset {} |
Definition at line 40 of file vertex_buffer_layout.hpp.
shader_data_type::u_type staplegl::vertex_attribute::type {} |
Definition at line 41 of file vertex_buffer_layout.hpp.