87 uint32_t location = 0;
88 VertexFormat format = VertexFormat::Float;
91 uint32_t componentsCount = 0;
92 bool isNormalized =
false;
94 AttributeUsage usage = AttributeUsage::Other;
95 const char *name =
"";
99 VertexAttributeDescription(uint32_t location, VertexFormat _format,
const char* _name,
bool _normalized =
false, AttributeUsage _usage = AttributeUsage::Other) :
100 location(location), format(_format), name(_name), usage(_usage), size(vertexFormatTypeSize(_format)), componentsCount(vertexFormatTypeComponents(_format)), isNormalized(_normalized), offset(0) {}
106 VertexBufferLayout(
const std::initializer_list<VertexAttributeDescription>& elements,
bool _element_rate =
false)
107 : attributeCount((uint32_t)elements.size()), stride(0), elementRate(_element_rate), attributes(
new VertexAttributeDescription[elements.size()]) {
110 for (uint32_t i = 0; i < attributeCount; ++i) {
111 attributes[i].offset = stride;
112 stride += attributes[i].size;
116 bool elementRate =
false;
118 uint32_t attributeCount = 0;