On this page
vertexAttribI4iv method
void vertexAttribI4iv(Source
void vertexAttribI4iv(int index, v) {
if ((v is Int32List) && (index is int)) {
_blink.BlinkWebGL2RenderingContext.instance
.vertexAttribI4iv_Callback_2_(this, index, v);
return;
}
if ((v is List<int>) && (index is int)) {
_blink.BlinkWebGL2RenderingContext.instance
.vertexAttribI4iv_Callback_2_(this, index, v);
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/vertexAttribI4iv.html