Options
All
  • Public
  • Public/Protected
  • All
Menu

Class WgBuffer<T>

WebGPU buffer class, allowing for easy creation and keeping track of GPU buffers

Type parameters

Hierarchy

  • WgBuffer

Index

Constructors

Private constructor

Properties

Private Readonly _buffer

_buffer: GPUBuffer

Private Readonly _byteSize

_byteSize: number

Private Readonly _constructor

_constructor: DataConstructor<T>

Private Readonly _copyType

_copyType: CopyType

Private Readonly _name

_name: string

Private Readonly _shape

_shape: Shape

Private Readonly _type

_type: BufferType

Readonly context

context: WgContext

Accessors

buffer

  • get buffer(): GPUBuffer

byteSize

  • get byteSize(): number

copiable

  • get copiable(): boolean

length

  • get length(): number

name

  • get name(): string

pastable

  • get pastable(): boolean

shape

type

Methods

cloneEmpty

  • Create a new buffer that is exactly like this buffer, except:

    • It's empty (uninitialized)
    • Features may differ, that depends on the 'feats' input parameter
    • Name may differ, that depends on the 'name' input parameter

    Parameters

    • context: WgContext

      The WebGPU context

    • Default value feats: BufferFeature[] = []

      The shape of the buffer (the number of elements will be calculated from this)

    • Optional name: undefined | string

      The name of the buffer (especially useful for debugging)

    Returns WgBuffer<T>

cloneOutput

  • Create a new buffer that is exactly like this buffer, except:

    • It's empty (uninitialized)
    • It in an output buffer (see WgBuffer.createOutput)

    Parameters

    • context: WgContext

      The WebGPU context

    • Optional name: undefined | string

      The name of the buffer (especially useful for debugging)

    Returns WgBuffer<T>

dispose

  • dispose(): void

read

  • read(offset?: number, length?: undefined | number): Promise<T>
  • Read this buffer into the CPU. WARNING: This will only work if the buffer is an output buffer (see WgBuffer.createOutput and WgBuffer.cloneOutput)

    Parameters

    • Default value offset: number = 0

      The offer, in number of elements, where the reading will begin

    • Optional length: undefined | number

      The length (size), in number of elemets, of the data that will be read

    Returns Promise<T>

write

  • write(data: T, byteOffset?: number, size?: undefined | number): void
  • Write into this buffer from the CPU. WARNING: This will only work if the buffer has one of the following features:

    • BufferFeature.CLEARABLE
    • BufferFeature.WRITABLE

    Parameters

    • data: T

      The data to write into the buffer

    • Default value byteOffset: number = 0

      The offset, in bytes, where the writing will being

    • Optional size: undefined | number

      The size (length), in number of elements, of the data that will be written

    Returns void

Static calculateLength

  • calculateLength(shape: Shape): number

Static createEmptyStorage

  • Creates an empty storage buffer, to be read/written into in shaders

    Type parameters

    Parameters

    • context: WgContext

      The WebGPU context

    • shape: Shape

      The shape of the buffer (the number of element will be calculated from this)

    • constr: DataConstructor<T>

      The constructor for the data (TODO: remove this! can be gotten from data.constructor)

    • Default value feats: BufferFeature[] = []

      The features of the buffer

    • Optional name: undefined | string

      The name of the buffer (especially useful for debugging)

    Returns WgBuffer<T>

Static createOutput

  • Creates an output buffer that cannot be used in shaders, but only:

    • (GPU) Copied into (with commandEncoder.copyBufferToBuffer)
    • (CPU) Read from (with buffer.mapAsync)

    Type parameters

    Parameters

    • context: WgContext

      The WebGPU context

    • shape: Shape

      The shape of the buffer (the number of elements will be calculated from this)

    • constr: DataConstructor<T>

      The constructor for the data (TODO: remove this! can be gotten from data.constructor)

    • Optional name: undefined | string

      The name of the buffer (especially useful for debugging)

    Returns WgBuffer<T>

Static createStorage

  • Creates a storage buffer, to be read/written into in shaders, and initialize it with some data

    Type parameters

    Parameters

    • context: WgContext

      The WebGPU context

    • shape: Shape

      The shape of the buffer (the number of elements will be calculated from this

    • constr: DataConstructor<T>

      The constructor for the data (TODO: remove this! can be gotten from data.constructor)

    • data: T | T[]

      The data to be initially copied into the buffer

    • Default value feats: BufferFeature[] = []

      The features of the buffer

    • Optional name: undefined | string

      The name of the buffer (especially useful for debugging)

    Returns WgBuffer<T>

Static createUniform

  • Creates an uniform buffer

    Type parameters

    Parameters

    • context: WgContext

      The WebGPU context

    • constr: DataConstructor<T>

      The constructor for the data (TODO: remove this! can be gotten from data.constructor)

    • data: T

      The data to be initially copied into the buffer

    • Default value variable: boolean = false

      Whether this buffer may be written into

    • Optional name: undefined | string

      The name of the buffer (especially useful for debugging)

    Returns WgBuffer<T>

Static Private getCopyType

Static Private getUsageFromCopyType

  • getUsageFromCopyType(copyType: CopyType): number

Static Private getUsageFromFeats

Generated using TypeDoc