blob: d36cb9b955d16d6088bb3da89d04c8a886be9e87 [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_GPU_QUERY_SET_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_GPU_QUERY_SET_H_
#include "third_party/blink/renderer/bindings/modules/v8/v8_gpu_query_type.h"
#include "third_party/blink/renderer/modules/webgpu/dawn_object.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
namespace blink {
class GPUQuerySetDescriptor;
class GPUQuerySet : public DawnObject<WGPUQuerySet> {
DEFINE_WRAPPERTYPEINFO();
public:
static GPUQuerySet* Create(GPUDevice* device,
const GPUQuerySetDescriptor* webgpu_desc);
explicit GPUQuerySet(GPUDevice* device, WGPUQuerySet querySet);
GPUQuerySet(const GPUQuerySet&) = delete;
GPUQuerySet& operator=(const GPUQuerySet&) = delete;
// gpu_queryset.idl
void destroy();
String type() const;
uint32_t count() const;
private:
void setLabelImpl(const String& value) override {
std::string utf8_label = value.Utf8();
GetProcs().querySetSetLabel(GetHandle(), utf8_label.c_str());
}
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_GPU_QUERY_SET_H_