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

    Interface ForwardRenderFeatureRequirements

    Static resource and device requirements declared before backend selection.

    interface ForwardRenderFeatureRequirements {
        requiredCapabilities?: readonly RenderPipelineCapabilityName[];
        requiredFeatures?: readonly RendererFeatureName[];
        requiredLimits?: Readonly<Record<string, number>>;
        requiredTextureFormats?: readonly Readonly<
            RenderPipelineTextureRequirement,
        >[];
        sampledDepth: boolean;
        sampledSceneColor: boolean;
    }

    Hierarchy (View Summary)

    Index
    requiredCapabilities?: readonly RenderPipelineCapabilityName[]

    Required SRP capabilities; unsupported capabilities fail instead of degrading.

    requiredFeatures?: readonly RendererFeatureName[]

    Required public renderer device features.

    requiredLimits?: Readonly<Record<string, number>>

    Minimum values for named fields in RenderPipelineLimits.

    requiredTextureFormats?: readonly Readonly<RenderPipelineTextureRequirement>[]

    Required texture-format roles.

    sampledDepth: boolean

    Reserved scene-depth sampling requirement. true is rejected until the public fullscreen binding ABI supports portable non-filtering depth sampling end to end.

    sampledSceneColor: boolean

    Route scene color through a linearly filterable sampled graph texture.