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

    Interface PostProcessRenderPipelineOptions

    Turnkey HDR forward/post-processing pipeline configuration.

    interface PostProcessRenderPipelineOptions {
        autoExposure?: false | Readonly<AutoExposureOptions>;
        bloom?: false | Readonly<BloomOptions>;
        colorUber?: Readonly<ColorUberOptions>;
        features?: readonly ForwardRenderPipelineFeature[];
        groundTruthAmbientOcclusion?:
            | false
            | Readonly<GroundTruthAmbientOcclusionOptions>;
        opaqueTexture?: boolean;
        screenSpaceGlobalIllumination?:
            | false
            | Readonly<ScreenSpaceGlobalIlluminationOptions>;
        temporalAA?: false | Readonly<TemporalAAOptions>;
    }
    Index
    autoExposure?: false | Readonly<AutoExposureOptions>

    GPU histogram eye adaptation, or false to keep manual exposure.

    bloom?: false | Readonly<BloomOptions>

    Bloom settings, or false to omit bloom. Bloom is enabled by default.

    colorUber?: Readonly<ColorUberOptions>

    Final color grading/tone mapping settings.

    features?: readonly ForwardRenderPipelineFeature[]

    Additional ordered forward features inserted after the built-in features.

    groundTruthAmbientOcclusion?:
        | false
        | Readonly<GroundTruthAmbientOcclusionOptions>

    Ground-truth ambient occlusion settings, or false to omit GTAO.

    opaqueTexture?: boolean

    Capture opaque scene color for transmission and volume. Defaults to true.

    screenSpaceGlobalIllumination?:
        | false
        | Readonly<ScreenSpaceGlobalIlluminationOptions>

    Screen-space diffuse global illumination settings, or false to omit SSGI.

    temporalAA?: false | Readonly<TemporalAAOptions>

    Temporal anti-aliasing/upscaling settings, or false to omit the temporal pass.