vertexAttribPointer method
dynamic
vertexAttribPointer()
Implementation
vertexAttribPointer(int index, int size, int type, bool normalized, int stride, int offset) {
Pointer<Void> offsetPointer = Pointer<Void>.fromAddress(offset);
gl.glVertexAttribPointer(index, size, type, normalized ? 1 : 0, stride, offsetPointer.cast<Void>());
}