On this page
clearBufferuiv method
void clearBufferuiv(Source
void clearBufferuiv(int buffer, int drawbuffer, value) {
if ((value is Uint32List) && (drawbuffer is int) && (buffer is int)) {
_blink.BlinkWebGL2RenderingContext.instance
.clearBufferuiv_Callback_3_(this, buffer, drawbuffer, value);
return;
}
if ((value is List<int>) && (drawbuffer is int) && (buffer is int)) {
_blink.BlinkWebGL2RenderingContext.instance
.clearBufferuiv_Callback_3_(this, buffer, drawbuffer, value);
return;
}
throw new ArgumentError("Incorrect number or type of arguments");
}
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-web_gl/RenderingContext2/clearBufferuiv.html