StapleGL
Header-only C++20 OpenGL wrapper
Loading...
Searching...
No Matches
staplegl::vertex_attribute Struct Reference

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 {}
 

Detailed Description

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.

See also
shader_data_type.hpp

Definition at line 37 of file vertex_buffer_layout.hpp.

Constructor & Destructor Documentation

◆ vertex_attribute() [1/5]

staplegl::vertex_attribute::vertex_attribute ( )
default

◆ ~vertex_attribute()

staplegl::vertex_attribute::~vertex_attribute ( )
default

◆ vertex_attribute() [2/5]

staplegl::vertex_attribute::vertex_attribute ( shader_data_type::u_type  in_type,
std::string_view  in_name 
)
inline

Definition at line 46 of file vertex_buffer_layout.hpp.

◆ vertex_attribute() [3/5]

staplegl::vertex_attribute::vertex_attribute ( shader_data_type::shader_array_type  in_type,
std::string_view  in_name,
size_t  element_count 
)
inline

Definition at line 52 of file vertex_buffer_layout.hpp.

◆ vertex_attribute() [4/5]

staplegl::vertex_attribute::vertex_attribute ( const vertex_attribute )
defaultnoexcept

◆ vertex_attribute() [5/5]

staplegl::vertex_attribute::vertex_attribute ( vertex_attribute &&  )
defaultnoexcept

Member Function Documentation

◆ operator=() [1/2]

auto staplegl::vertex_attribute::operator= ( const vertex_attribute ) -> vertex_attribute &=default
defaultnoexcept

◆ operator=() [2/2]

auto staplegl::vertex_attribute::operator= ( vertex_attribute &&  ) -> vertex_attribute &=default
defaultnoexcept

Member Data Documentation

◆ element_count

std::size_t staplegl::vertex_attribute::element_count { 1 }

Definition at line 39 of file vertex_buffer_layout.hpp.

◆ name

std::string staplegl::vertex_attribute::name

Definition at line 38 of file vertex_buffer_layout.hpp.

◆ offset

std::uint32_t staplegl::vertex_attribute::offset {}

Definition at line 40 of file vertex_buffer_layout.hpp.

◆ type

shader_data_type::u_type staplegl::vertex_attribute::type {}

Definition at line 41 of file vertex_buffer_layout.hpp.


The documentation for this struct was generated from the following file: