// Copyright 2015 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/webgl/webgl_sampler.h" #include "gpu/command_buffer/client/gles2_interface.h" #include "third_party/blink/renderer/modules/webgl/webgl2_rendering_context_base.h" namespace blink { WebGLSampler::WebGLSampler(WebGL2RenderingContextBase* ctx) : … { … } WebGLSampler::~WebGLSampler() = default; void WebGLSampler::DeleteObjectImpl(gpu::gles2::GLES2Interface* gl) { … } } // namespace blink