Module

std/webgpu/mod.ts>getRowPadding

The Deno Standard Library
Latest
function getRowPadding
import { getRowPadding } from "https://dotland.deno.dev/std@0.224.0/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

import { getRowPadding } from "https://deno.land/std@0.224.0/webgpu/row_padding.ts";

getRowPadding(2); // { unpadded: 8, padded: 256 }

Parameters

width: number
import getRowPadding
import { getRowPadding } from "https://dotland.deno.dev/std@0.224.0/webgpu/mod.ts";