blob: 4b2b0ec609de0e638727b17a2207e5b747f234cb [file] [log] [blame]
// Copyright 2019 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_GPU_SHADER_MODULE_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_GPU_SHADER_MODULE_H_
#include "third_party/blink/renderer/modules/webgpu/dawn_object.h"
namespace blink {
class GPUShaderModuleDescriptor;
class ExceptionState;
class GPUShaderModule : public DawnObject<WGPUShaderModule> {
DEFINE_WRAPPERTYPEINFO();
public:
static GPUShaderModule* Create(GPUDevice* device,
const GPUShaderModuleDescriptor* webgpu_desc,
ExceptionState& exception_state);
explicit GPUShaderModule(GPUDevice* device, WGPUShaderModule shader_module);
private:
DISALLOW_COPY_AND_ASSIGN(GPUShaderModule);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_WEBGPU_GPU_SHADER_MODULE_H_