glVertexAttribFormat method

void glVertexAttribFormat(
  1. int attribindex,
  2. int size,
  3. int type,
  4. int normalized,
  5. int relativeoffset,
)

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,
  );
}