blob: 073992d028827082b79f3f10b4cb854a5e110ef7 [file] [log] [blame]
// 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/webgl_context_object_support.h"
namespace blink {
WebGLSampler::WebGLSampler(WebGLContextObjectSupport* ctx) : WebGLObject(ctx) {
if (!ctx->IsLost()) {
GLuint sampler;
ctx->ContextGL()->GenSamplers(1, &sampler);
SetObject(sampler);
}
}
WebGLSampler::~WebGLSampler() = default;
void WebGLSampler::DeleteObjectImpl(gpu::gles2::GLES2Interface* gl) {
gl->DeleteSamplers(1, &Object());
}
} // namespace blink