textmode.synth.js / SynthTransformType
Type Alias: SynthTransformType
ts
type SynthTransformType =
| typeof TT_SRC
| typeof TT_COORD
| typeof TT_COLOR
| typeof TT_COMBINE
| typeof TT_COMBINE_COORD;Transform type categories determining how functions compose in the shader pipeline.
Each type has specific input/output signatures:
src: Source generators that produce colors from UV coordinatescoord: Coordinate transforms that modify UV before samplingcolor: Color transforms that modify existing color valuescombine: Blending operations that combine two color sourcescombineCoord: Modulation that uses one source to affect another's coordinates