summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/webgpu/gpu_texture_view.cc
blob: 9b87f22f88b0f2790925397cc43c04b00dbf60a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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.

#include "third_party/blink/renderer/modules/webgpu/gpu_texture_view.h"

#include "third_party/blink/renderer/modules/webgpu/gpu_device.h"

namespace blink {

GPUTextureView::GPUTextureView(GPUDevice* device, WGPUTextureView texture_view)
    : DawnObject<WGPUTextureView>(device, texture_view) {}

}  // namespace blink