blob: 0e675c80f942dc58fb28cc533160883a47797a30 [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.
#ifndef EXTsRGB_h
#define EXTsRGB_h
#include "modules/webgl/WebGLExtension.h"
namespace blink {
class EXTsRGB final : public WebGLExtension {
DEFINE_WRAPPERTYPEINFO();
public:
static EXTsRGB* Create(WebGLRenderingContextBase*);
static bool Supported(WebGLRenderingContextBase*);
static const char* ExtensionName();
WebGLExtensionName GetName() const override;
private:
explicit EXTsRGB(WebGLRenderingContextBase*);
};
} // namespace blink
#endif // EXTsRGB_h