chromium/third_party/blink/renderer/modules/webgpu/gpu_sampler.cc

// Copyright 2019 The Chromium Authors
// 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_sampler.h"

#include "third_party/blink/renderer/bindings/modules/v8/v8_gpu_sampler_descriptor.h"
#include "third_party/blink/renderer/modules/webgpu/dawn_conversions.h"
#include "third_party/blink/renderer/modules/webgpu/gpu_device.h"

namespace blink {

namespace {

wgpu::SamplerDescriptor AsDawnType(const GPUSamplerDescriptor* webgpu_desc,
                                   std::string* label) {}

}  // anonymous namespace

// static
GPUSampler* GPUSampler::Create(GPUDevice* device,
                               const GPUSamplerDescriptor* webgpu_desc) {}

GPUSampler::GPUSampler(GPUDevice* device,
                       wgpu::Sampler sampler,
                       const String& label)
    :{}

}  // namespace blink