MergeSimpleModule¶
Overview¶
Merges two sorted arrays into a single sorted array (with a simpler algorithm than MergeModule).
@author Jonathan Olson <jonathan.olson@colorado.edu>
Class MergeSimpleModule¶
outputSize: number (sum of inputASize and inputBSize)
Constructor¶
new MergeSimpleModule( providedOptions : MergeSimpleModuleOptions<T> )¶
Instance Methods¶
Instance Properties¶
inputA : BufferArraySlot<T>¶
(readonly)
inputB : BufferArraySlot<T>¶
(readonly)
output : BufferArraySlot<T>¶
(readonly)
Type MergeSimpleModuleOptions¶
- inputA: BufferArraySlot<T>
- inputB: BufferArraySlot<T>
- output: BufferArraySlot<T>
- & mainMergeSimpleWGSLOptions<T> & PipelineBlueprintOptions
Source Code¶
See the source for MergeSimpleModule.ts in the alpenglow repository.