The WebGPU context
The INPUT to which the ADDEND will be added
The ADDEND. This can have multiple forms: - A scalar value: Every value in the INPUT will be incremented by this value - Multiple values: The values of INPUT will be increment by the values passed here in a block-wise manner. This will depend on the value passed on 'blockSize'. See the description of that parameter for more details
The size of each addition block. A block is a section of the INPUT data that will be incremented by the same value contained in the ADDEND buffer. Example: - The 1st n=blockSize elements (i.e. range [0,blockSize)) of INPUT will be incremented by the 1st ADDEND value - The next n=blockSize elements (i.e. range [blockSize,2blockSize)) of INPUT will be incremented by the 2nd ADDEND value - The next n=blockSize elements (i.e. range [2blockSize,3*blockSize)) of INPUT will be incremented by the 3rd ADDEND value - And so on... If 'blockSize' is undefined, it will be automatically calculated to span the entire INPUT range as uniformly as possible: blockSize = ceil( len(INPUT) / len(ADDEND) ); where len() gives the number of elements of INPUT and ADDEND
If provided, the output buffer of this shader (useful for debugging)
If provided, the offset of the output buffer (useful for debugging)
Generated using TypeDoc
A shader that adds one or multiple ADDENDs to an INPUT. The addend can have multiple forms. See the constructor for more details