clearBufferiv method
Implementation
void clearBufferiv(int buffer,int drawbuffer, int value){
startCheck('clearBufferiv');
Pointer<Int32> id = calloc<Int32>(value);
gl.glClearBufferiv(buffer,drawbuffer,id);
checkError('clearBufferiv');
calloc.free(id);
}