On this page
vertexAttrib4fv method
void vertexAttrib4fv(Source
void vertexAttrib4fv(int indx, values) {
if ((values is Float32List) && (indx is int)) {
_blink.BlinkWebGL2RenderingContext.instance
.vertexAttrib4fv_Callback_2_(this, indx, values);
return;
}
if ((values is List<num>) && (indx is int)) {
_blink.BlinkWebGL2RenderingContext.instance
.vertexAttrib4fv_Callback_2_(this, indx, values);
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/vertexAttrib4fv.html