glDrawElementsInstanced method

void glDrawElementsInstanced(
  1. int mode,
  2. int count,
  3. int type,
  4. int offset,
  5. int instanceCount,
)

Implementation

void glDrawElementsInstanced(int mode, int count, int type, int offset, int instanceCount) {
  gl.drawElementsInstanced(mode, count, type, offset, instanceCount);
}