The WebGPU context
The input buffers. See this class's description for more details. - in_collisions: The SORTED 'collisions' buffer - indices: The indices buffer used in the sorting of 'in_collisions' - out_collisions: The UNSORTED 'collisions' buffer
The output buffer (useful for debugging)
The output offset (useful for debugging)
Generated using TypeDoc
"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.