void bufferData(
int target,
data_OR_size,
int usage
)

Not documented.

Source

void bufferData(int target, data_OR_size, int usage) {
  if ((usage is int) && (data_OR_size is int) && (target is int)) {
    _blink.BlinkWebGLRenderingContext.instance.bufferData_Callback_3_(unwrap_jso(this), target, unwrap_jso(data_OR_size), usage);
    return;
  }
  if ((usage is int) && (data_OR_size is TypedData) && (target is int)) {
    _blink.BlinkWebGLRenderingContext.instance.bufferData_Callback_3_(unwrap_jso(this), target, unwrap_jso(data_OR_size), usage);
    return;
  }
  if ((usage is int) && (data_OR_size is ByteBuffer || data_OR_size == null) && (target is int)) {
    _blink.BlinkWebGLRenderingContext.instance.bufferData_Callback_3_(unwrap_jso(this), target, unwrap_jso(data_OR_size), usage);
    return;
  }
  throw new ArgumentError("Incorrect number or type of arguments");
}