blob: f09d15eacd4f6a877dcf6f714680de8b5dc41b85 [file]
// 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.
#ifndef EXTBlendMinMax_h
#define EXTBlendMinMax_h
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/html/canvas/WebGLExtension.h"
#include "wtf/PassRefPtr.h"
namespace blink {
class EXTBlendMinMax final : public WebGLExtension, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtr<EXTBlendMinMax> create(WebGLRenderingContextBase*);
static bool supported(WebGLRenderingContextBase*);
static const char* extensionName();
virtual ~EXTBlendMinMax();
virtual WebGLExtensionName name() const override;
private:
explicit EXTBlendMinMax(WebGLRenderingContextBase*);
};
} // namespace blink
#endif // EXTBlendMinMax_h