Definition
WebGPU defines GPUQuerySet
[Exposed=(Window, Worker), SecureContext]
interface GPUQuerySet {
undefined destroy();
readonly attribute GPUQueryType type;
readonly attribute GPUSize32Out count;
};
GPUQuerySet includes GPUObjectBase;
Consolidated IDL (across mixin and partials)
[Exposed=(Window, Worker), SecureContext]
interface GPUQuerySet {
undefined destroy();
readonly attribute GPUQueryType type;
readonly attribute GPUSize32Out count;
attribute USVString label;
};