glVertexAttribFormat method
void
glVertexAttribFormat()
Implementation
void glVertexAttribFormat(
int attribindex,
int size,
int type,
int normalized,
int relativeoffset,
) {
return (_glVertexAttribFormat ??= _dylib.lookupFunction<
_c_glVertexAttribFormat,
_dart_glVertexAttribFormat>('glVertexAttribFormat'))(
attribindex,
size,
type,
normalized,
relativeoffset,
);
}