Nano WebGPU API - v0.11.0
    Preparing search index...

    Interface VRAMEntry

    Struct representing a single tracked VRAM allocation entry.

    interface VRAMEntry {
        createdAt: number;
        id: number;
        label: string;
        owner: string;
        resource: GPUBuffer | GPUTexture;
        sizeBytes: number;
        type: "buffer" | "texture";
    }
    Index

    Properties

    createdAt: number

    Epoch timestamp in milliseconds indicating when the resource was registered.

    id: number

    Unique identification number incremented on registration.

    label: string

    WebGPU label description assigned to the allocation block.

    owner: string

    Owning class name that initiated the allocation.

    resource: GPUBuffer | GPUTexture

    Reference to the native WebGPU resource key.

    sizeBytes: number

    Size of the allocated resource block in bytes.

    type: "buffer" | "texture"

    Resource classification choice ("buffer" or "texture").