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 full)
Properties
Readonly
Internal
__brand
__brand: "GPUQuerySet"
Readonly
count
count: number
The number of queries managed by this GPUQuerySet.
label
label: string
Readonly
type
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