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

Concept that specifies that a type is a Plain Old Data (POD) type. More...

#include <vertex_buffer.hpp>

Concept definition

template<typename T>
concept staplegl::plain_old_data = std::is_standard_layout_v<T> && std::is_trivial_v<T>
Concept that specifies that a type is a Plain Old Data (POD) type.

Detailed Description

Concept that specifies that a type is a Plain Old Data (POD) type.

Template Parameters
Tthe type to be checked.

Definition at line 39 of file vertex_buffer.hpp.