loadDoubleListOffset method

void loadDoubleListOffset(
  1. List<double> src,
  2. int offsetInFloat,
  3. int sizeInFloat
)

Implementation

void loadDoubleListOffset(List<double> src, int offsetInFloat,
    int sizeInFloat) {
  checkArgument(
    sizeInFloat % format.channelCount == 0,
    message:
    "Size ($sizeInFloat) needs to be a multiplier of the number of channels (${format
        .channelCount})",
  );
  buffer.loadOffset(src, offsetInFloat, sizeInFloat);
}