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

    Interface RenderGraphPassTimelineSnapshot

    Immutable CPU/GPU timing values for one compiled Render Graph pass.

    interface RenderGraphPassTimelineSnapshot {
        cpuDurationMs: number;
        gpuDurationMs: number | null;
        kind: RGPassTimestampKind | null;
        name: string;
    }
    Index
    cpuDurationMs: number

    Synchronous CPU execution duration in milliseconds.

    gpuDurationMs: number | null

    Asynchronously resolved GPU duration in milliseconds, or null when unavailable.

    kind: RGPassTimestampKind | null

    Native timestamp category, or null when this pass cannot be profiled.

    name: string

    Stable graph pass label.