candlewick 0.1.0
A renderer
Loading...
Searching...
No Matches
candlewick::IsVertexType Concept Reference

Basic concept checking if type V has the correct layout and alignment requirements to be a vertex element. More...

#include <candlewick/core/MeshLayout.h>

Concept definition

template<typename V>
concept candlewick::IsVertexType = std::is_standard_layout_v<V> && (alignof(V) == 16)
Basic concept checking if type V has the correct layout and alignment requirements to be a vertex ele...
Definition MeshLayout.h:206

Detailed Description

Basic concept checking if type V has the correct layout and alignment requirements to be a vertex element.