blob: c888a303dd83a4be3857214cfe675edc9b1a59c7 [file] [log] [blame]
// Copyright 2014 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 "modules/webgl/EXTShaderTextureLOD.h"
namespace blink {
EXTShaderTextureLOD::EXTShaderTextureLOD(WebGLRenderingContextBase* context)
: WebGLExtension(context) {
context->ExtensionsUtil()->EnsureExtensionEnabled(
"GL_EXT_shader_texture_lod");
}
WebGLExtensionName EXTShaderTextureLOD::GetName() const {
return kEXTShaderTextureLODName;
}
EXTShaderTextureLOD* EXTShaderTextureLOD::Create(
WebGLRenderingContextBase* context) {
return new EXTShaderTextureLOD(context);
}
bool EXTShaderTextureLOD::Supported(WebGLRenderingContextBase* context) {
return context->ExtensionsUtil()->SupportsExtension(
"GL_EXT_shader_texture_lod");
}
const char* EXTShaderTextureLOD::ExtensionName() {
return "EXT_shader_texture_lod";
}
} // namespace blink