rlSetVertexAttribute method
void
rlSetVertexAttribute()
override
Set vertex attribute data configuration
Implementation
@override
void rlSetVertexAttribute(
int index,
int compSize,
int type,
bool normalized,
int stride,
int offset,
) => _wasm.rlSetVertexAttribute(
index.toJS,
compSize.toJS,
type.toJS,
normalized.toJS,
stride.toJS,
offset.toJS,
);