API reference

Every public class, method, and event in @codexo/exojs. Generated from source.

I

interfaceLutFilterOptions

@codexo/exojs / rendering / stable

Construction options for LutFilter.

2
props
0
methods
0
events
Import
import { LutFilterOptions } from '@codexo/exojs'

Construction options for LutFilter.

Properties2
Storage mode of the LUT texture. - 'rgb1d' - texture is N×1, holding three independent per-channel curves: red is graded through the LUT's red channel, green through green, blue through blue. Used for levels/curves-style grading, colour ramps and posterisation. - '3d' - texture is N²×N, indexed by the full source RGB. Used for color grading, tone mapping, film emulation. Default '3d'.
size?: number
Size N of a 3D LUT (cube edge length). Common values: 8, 16, 17, 32, 33. Ignored for 1D mode. Default 17 (matches DaVinci/OBS export defaults).
Source