GPUImageDataLayout constructor

GPUImageDataLayout({
  1. int? offset,
  2. int? bytesPerRow,
  3. int? rowsPerImage,
})

Implementation

factory GPUImageDataLayout(
        {int? offset, int? bytesPerRow, int? rowsPerImage}) =>
    GPUImageDataLayout._(
        offset: offset ?? 0,
        bytesPerRow: bytesPerRow ?? undefined,
        rowsPerImage: rowsPerImage ?? undefined);