Options
All
  • Public
  • Public/Protected
  • All
Menu

Class WgCompMapXyzShader

Maps some vec4 data into another buffer at the provided index. See constructor for more details

Hierarchy

Index

Constructors

constructor

  • Parameters

    • context: WgContext

      The WebGPU context

    • inputs: WgCompMapXyzShaderInputs

      The input buffers: - in_xyzcr: The input data to be mapped into a separate buffer - out_xyzcr: The output buffer that will contain the same data as 'in_xyzcr' but mapped into different indexes (the new indexes are provided in the 'indices' buffer) - indices: The new indices of 'in_xyzcr' in 'out_xyzcr. Each value 'id_i' at position 'i' of this buffer represents the index in output. Like this: - in_xyzcr has value 'v' at position 'i' - indices has value 'i_out' at position 'i' - out_xyzcr will have value 'v' at position 'i_out' - in_bonds: The input bond data, which will be mapped just like 'in_xyzcr' See WgCompCollisionGlobalShader's constructor for a detailed description - out_bonds: The output bond data, which is mapped just like 'out_xyzcr'

    • Optional outputs: WgCompMapXyzShaderOutputs

      The output buffer and offset (useful for debugging)

    Returns WgCompMapXyzShader

Properties

Private Readonly _inputs

Private Optional Readonly _outputs

Accessors

bindGroups

  • get bindGroups(): { bindGroup: GPUBindGroup; index: number }[]

dispatchSize

  • get dispatchSize(): [number, number, number]

outputs

  • get outputs(): { byteSize: number; dst: WgBuffer<Float32Array>; dstOffset: number; src: WgBuffer<Float32Array>; srcOffset: number }[]

pipeline

  • get pipeline(): GPUComputePipeline

workgroupSize

  • get workgroupSize(): [number, number, number]

Methods

dispose

  • dispose(): void

Generated using TypeDoc