drawElementsInstanced method
Implementation
void drawElementsInstanced(int mode, int count, int type, int offset, int instanceCount){
startCheck('drawElementsInstanced');
var indices = Pointer<Void>.fromAddress(offset);
gl.glDrawElementsInstanced(mode, count, type, indices, instanceCount);
checkError('drawElementsInstanced');
calloc.free(indices);
}