Takes as input the buffer containing the positions of the collision elements (in our case, probably atoms, maybe
something else too in the future - 22/08/2022).
Each element will be treated as an INSTANCE and will be drawn using quad VERTICES (4 triangle-strip vertices).
Takes as input also the collisions buffer, a U32 buffer where each bit encodes an element/atom. 0 means this element
does not collide with any other element. 1 means it does.
This class also creates and manages the uniforms buffer,
taking its parameters in the constructor and in setUniforms()
The elements/atoms that do collide will be drawn.
The ones that don't, will not.
The collision rendering shader.
Takes as input the buffer containing the positions of the collision elements (in our case, probably atoms, maybe something else too in the future - 22/08/2022). Each element will be treated as an INSTANCE and will be drawn using quad VERTICES (4 triangle-strip vertices).
Takes as input also the collisions buffer, a U32 buffer where each bit encodes an element/atom. 0 means this element does not collide with any other element. 1 means it does.
This class also creates and manages the uniforms buffer, taking its parameters in the constructor and in setUniforms()
The elements/atoms that do collide will be drawn. The ones that don't, will not.