blob: 9d68e2663afb171858ef71b618ebdb082bf557af [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/EXTBlendMinMax.h"
namespace blink {
EXTBlendMinMax::EXTBlendMinMax(WebGLRenderingContextBase* context)
: WebGLExtension(context) {
context->ExtensionsUtil()->EnsureExtensionEnabled("GL_EXT_blend_minmax");
}
WebGLExtensionName EXTBlendMinMax::GetName() const {
return kEXTBlendMinMaxName;
}
EXTBlendMinMax* EXTBlendMinMax::Create(WebGLRenderingContextBase* context) {
return new EXTBlendMinMax(context);
}
bool EXTBlendMinMax::Supported(WebGLRenderingContextBase* context) {
return context->ExtensionsUtil()->SupportsExtension("GL_EXT_blend_minmax");
}
const char* EXTBlendMinMax::ExtensionName() {
return "EXT_blend_minmax";
}
} // namespace blink