import { getRowPadding } from "https://deno.land/std@0.222.1/webgpu/mod.ts";
Calculates the number of bytes including necessary padding when passing a GPUImageCopyBuffer
.
Ref: https://en.wikipedia.org/wiki/Data_structure_alignment#Computing_padding
Examples
Example 1
Example 1
import { getRowPadding } from "https://deno.land/std@0.222.1/webgpu/row_padding.ts";
getRowPadding(2); // { unpadded: 8, padded: 256 }