Interface GPUQuerySet

    interface GPUQuerySet {
        __brand: "GPUQuerySet";
        count: number;
        label: string;
        type: GPUQueryType;
        destroy(): undefined;
    }
    Hierarchy

    Properties

    Methods

    Properties

    __brand: "GPUQuerySet"
    count: number

    The number of queries managed by this GPUQuerySet.

    label: string

    The type of the queries managed by this GPUQuerySet.

    Methods

    • Destroys the GPUQuerySet.

      Returns undefined