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

    Interface TextureUpdateSnapshot

    Immutable content changes that a rendering backend can acknowledge independently.

    interface TextureUpdateSnapshot {
        requiresFullUpload: boolean;
        revision: number;
        subTextures: readonly TextureSubImage[];
    }
    Index
    requiresFullUpload: boolean

    Whether the requesting backend must replay the exact full-content checkpoint first.

    revision: number

    Latest texture content revision represented by this snapshot.

    subTextures: readonly TextureSubImage[]

    Incremental writes newer than the applicable full-upload baseline.