drawElementsInstanced method

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

Implementation

void drawElementsInstanced(int mode, int count, int type, int offset, int instanceCount) {
  _gl.drawElementsInstanced(mode, count, type, offset, instanceCount);
  checkError('drawElementsInstanced');
}