Hilo3d API - v2.0.0-alpha.4
    Preparing search index...

    Interface TemporalAAOptions

    Temporal anti-aliasing, temporal upscaling, and optional dynamic-resolution controls.

    interface TemporalAAOptions {
        depthThreshold?: number;
        dynamicResolution?: false | Readonly<DynamicResolutionOptions>;
        historyWeight?: number;
        renderScale?: number;
        sharpness?: number;
        varianceGamma?: number;
    }
    Index
    depthThreshold?: number

    Maximum relative previous-view-depth error. Defaults to 0.02.

    dynamicResolution?: false | Readonly<DynamicResolutionOptions>

    GPU timestamp driven dynamic resolution. Omit or use false for a fixed render scale.

    historyWeight?: number

    Maximum accepted history contribution after rejection. Defaults to 0.92.

    renderScale?: number

    Internal scene resolution relative to the output. Values below one enable TAAU. When dynamicResolution is present this overrides that object's initial scale. Defaults to 1 and is constrained to the inclusive range 0.5–1.

    sharpness?: number

    Resolve-only contrast restoration; history remains unsharpened. Defaults to 0.08.

    varianceGamma?: number

    Standard-deviation extent used by YCoCg variance clipping. Defaults to 1.25.