rlSetVertexAttribute method
void
rlSetVertexAttribute()
override
Implementation
@override
void rlSetVertexAttribute(
num index,
num compSize,
num type,
bool normalized,
num stride,
num offset,
) => run(
() => RaylibDebugLabels.rlSetVertexAttribute(index, compSize, type, normalized, stride, offset),
() => rl.Rlgl.rlSetVertexAttribute.run6(
index.toJS,
compSize.toJS,
type.toJS,
normalized.toJS,
stride.toJS,
offset.toJS,
),
);