Options
All
  • Public
  • Public/Protected
  • All
Menu

Class WgCompUnsortShader

"Unsorts" collision data based on an 'indices' buffer.

Catana explanation:

A 'collisions' buffer is a U32 buffer where each bit encodes whether an element/atom is colliding with another or not. 0 means it does not collide; 1 means it does collide.

The way our collision detection algorithm works, the element/atom data is sorted based on which cell they live in in the grid. This sorting is done based on an 'indices' buffer, where a value 'vi' in position 'i' represents the index where the element/atom 'ai' in position 'i' should be placed on. So atom 'ai' will end up in position 'vi'

The output 'collisions' buffer of our collision detection algorithm is therefore aligned with the SORTED indexes where atom 'ai' has index 'vi'.

It may be however desired that our 'collisions' buffer is aligned with the UNSORTED indexes where atom 'ai' has index 'i'.

This shader does just that! It UNSORTS the 'collisions' buffer to the original positions.

Hierarchy

Index

Constructors

constructor

Properties

Private Readonly inputs

Private Optional Readonly output

output: WgBuffer<Uint32Array>

Private Optional Readonly outputOffset

outputOffset: undefined | number

Accessors

bindGroups

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

dispatchSize

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

outputs

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

pipeline

  • get pipeline(): GPUComputePipeline

workgroupSize

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

Methods

dispose

  • dispose(): void

Generated using TypeDoc