blob: 5b1bd9d9b4c87432ea53437a8f255eb54b254fd1 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// 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_WEBGPU_DEVICE_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_WEBGPU_DEVICE_H_
#include "third_party/blink/public/platform/web_graphics_context_3d_provider.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
namespace blink {
class WebGPUAdapter;
class WebGPUDevice final : public ScriptWrappable {
DISALLOW_COPY_AND_ASSIGN(WebGPUDevice);
DEFINE_WRAPPERTYPEINFO();
public:
static WebGPUDevice* Create(ExecutionContext*, WebGPUAdapter*);
WebGPUAdapter* adapter() const;
void dummy() const;
void Trace(blink::Visitor*) override;
private:
WebGPUDevice(WebGPUAdapter*, std::unique_ptr<WebGraphicsContext3DProvider>);
gpu::webgpu::WebGPUInterface* Interface() const;
Member<WebGPUAdapter> adapter_;
std::unique_ptr<WebGraphicsContext3DProvider> context_provider_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_WEBGPU_DEVICE_H_