glDrawRangeElements method

void glDrawRangeElements(
  1. int mode,
  2. int start,
  3. int end,
  4. int count,
  5. int type,
  6. Pointer<Void> indices,
)

Implementation

void glDrawRangeElements(
  int mode,
  int start,
  int end,
  int count,
  int type,
  ffi.Pointer<ffi.Void> indices,
) {
  return _glDrawRangeElements(
    mode,
    start,
    end,
    count,
    type,
    indices,
  );
}