The WebGPU context
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'
The output buffer and offset (useful for debugging)
Generated using TypeDoc
Maps some vec4 data into another buffer at the provided index. See constructor for more details