Skip to main content
Module

std/webgpu/mod.ts>getRowPadding

Deno standard library
Go to Latest
function getRowPadding
Re-export
import { getRowPadding } from "https://deno.land/std@0.217.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.217.0/webgpu/row_padding.ts";

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

Parameters

width: number