gldtVertexAttribPointer function

void gldtVertexAttribPointer(
  1. int index,
  2. int size,
  3. int type,
  4. int normalized,
  5. int stride,
  6. int pos,
)

Implementation

void gldtVertexAttribPointer(
    int index, int size, int type, int normalized, int stride, int pos) {
  glVertexAttribPointer(
      index, size, type, normalized, stride, Pointer<Void>.fromAddress(pos));
}