Options
All
  • Public
  • Public/Protected
  • All
Menu

Class WgPass

Describes a WebGPU pass that can be used in a WgAlgorithm to create a pipeline

Hierarchy

  • WgPass

Index

Constructors

Private constructor

Properties

Readonly encode

encode: EncodeFun

Readonly info

info: PassInfo

Static Private Readonly debug_outputs

debug_outputs: Map<string, WgBuffer<any>[]> = new Map<string, WgBuffer<any>[]>()

Methods

Static Private buffName

Static Private compName

Static createCompShaderPass

Static createCopyPass

  • Creates a copy pass, copying (in the GPU) the contents of one source buffer into a destination buffer

    Type parameters

    Parameters

    • context: WgContext

      The WebGPU context

    • src: WgBuffer<T>

      The source buffer (to be copied from)

    • dst: WgBuffer<T>

      The destination buffer (to be copied into)

    • Default value srcOffset: number = 0

      The offset of the source buffer (where to begin copying from)

    • Default value dstOffset: number = 0

      The offset of the destination buffer (where to begin copying into)

    • Optional byteSize: undefined | number

      The size/length (in bytes) of the data to copy

    Returns WgPass

Static createFillPass

Static createRenderPass

Static deleteOutputs

  • deleteOutputs(debug: string): void

Static getOutputs

  • getOutputs(debug: string): null | WgBuffer<any>[]
  • Outputs are a mechanic to use during debugging, to enable that the contents of a buffer can be read on the CPU (and printed) to facilitate debugging

    Parameters

    • debug: string

      The name of the debugging instance

    Returns null | WgBuffer<any>[]

Static printOutputs

  • printOutputs(debug: string): Promise<void>

Static Private rendName

Generated using TypeDoc