Interface GPUQuerySet
interface GPUQuerySet {
__brand: "GPUQuerySet";
count: number;
label: string;
type: GPUQueryType;
destroy(): undefined;
}
__brand: "GPUQuerySet";
count: number;
label: string;
type: GPUQueryType;
destroy(): undefined;
}
                 
                    
                  Hierarchy
              
              - GPUObjectBase- GPUQuerySet (View Summary)
 
 Properties
Readonly Internal__brand
__brand: "GPUQuerySet"
Readonlycount
count: number
The number of queries managed by this GPUQuerySet.
label
label: string
Readonlytype
The type of the queries managed by this GPUQuerySet.
 Methods
destroy
- destroy(): undefined
- Destroys the GPUQuerySet. - Returns undefined
Nominal type branding. https://github.com/microsoft/TypeScript/pull/33038