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

    Interface RenderGraphResourceLifetimeSnapshot

    Immutable lifetime metadata for one compiled Render Graph resource.

    interface RenderGraphResourceLifetimeSnapshot {
        firstUse: number | null;
        kind: "buffer" | "texture" | "texture-view";
        lastUse: number | null;
        name: string;
        origin: "view" | "transient" | "imported";
    }
    Index
    firstUse: number | null

    First compiled pass index using this resource, or null when unused.

    kind: "buffer" | "texture" | "texture-view"

    Logical graph resource category.

    lastUse: number | null

    Last compiled pass index using this resource, or null when unused.

    name: string

    Stable graph resource label.

    origin: "view" | "transient" | "imported"

    Whether the resource was imported, transiently allocated, or derived as a view.