glDrawElements method

void glDrawElements(
  1. int mode,
  2. int count,
  3. int type,
  4. Pointer<Void> indices,
)

Implementation

void glDrawElements(
  int mode,
  int count,
  int type,
  ffi.Pointer<ffi.Void> indices,
) {
  return _glDrawElements(
    mode,
    count,
    type,
    indices,
  );
}