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

    Interface RenderPipelineContext

    Frame-scoped recording context; retaining it after record() returns is an error.

    interface RenderPipelineContext {
        camera: Camera;
        capabilities: RenderPipelineCapabilities;
        clearColor: Readonly<RenderTargetColor>;
        frameIndex: number;
        graph: ScriptableRenderGraph;
        output: RenderPipelineOutput;
        scene: RendererScene;
        viewport: RendererViewport;
        acquirePassParameters<P extends object>(
            pool: RenderPassParameterPool<P>,
        ): P;
        createRendererList(
            descriptor: Readonly<RendererListDescriptor>,
        ): RendererListHandle;
        cull(options?: Readonly<CullingOptions>): CullingResultsHandle;
        recordShadows(cullingResults: CullingResultsHandle): void;
    }
    Index
    camera: Camera

    Camera supplied to the current renderer invocation.

    Effective capabilities for the current device generation.

    clearColor: Readonly<RenderTargetColor>

    Renderer clear color snapshotted for this synchronous invocation.

    frameIndex: number

    Monotonic application frame index.

    Backend-neutral graph facade for this invocation.

    Physical output metadata.

    Scene supplied to the current renderer invocation.

    Active viewport in physical pixels.