rlSetVertexAttribute method
void
rlSetVertexAttribute()
Implementation
void rlSetVertexAttribute(
num index,
num compSize,
num type,
bool normalized,
num stride,
num offset,
) => run(
() => 'rlSetVertexAttribute($index, $compSize, $type, $normalized, $stride, $offset)',
() => rl.Rlgl.rlSetVertexAttribute(
index.toInt(),
compSize.toInt(),
type.toInt(),
normalized,
stride.toInt(),
offset.toInt(),
),
);