Fix //third_party/sqlite BUILD.gn on iOS.
[chromium-blink-merge.git] / ui / gl / gl_context_stub_with_extensions.h
blobd9da9d526177552f8d6e3d229246c31c71b81ebc
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_GL_GL_CONTEXT_STUB_WITH_EXTENSIONS_H_
6 #define UI_GL_GL_CONTEXT_STUB_WITH_EXTENSIONS_H_
8 #include "ui/gl/gl_context_stub.h"
10 namespace gfx {
12 // Lightweight GLContext stub implementation that returns a constructed
13 // extensions string. We use this to create a context that we can use to
14 // initialize GL extensions with, without actually creating a platform context.
15 class GL_EXPORT GLContextStubWithExtensions : public gfx::GLContextStub {
16 public:
17 GLContextStubWithExtensions() {}
18 std::string GetExtensions() override;
20 void AddExtensionsString(const char* extensions);
21 void SetGLVersionString(const char* version_str);
22 bool WasAllocatedUsingRobustnessExtension() override;
24 protected:
25 std::string GetGLVersion() override;
27 ~GLContextStubWithExtensions() override {}
29 private:
30 std::string extensions_;
31 std::string version_str_;
33 DISALLOW_COPY_AND_ASSIGN(GLContextStubWithExtensions);
36 } // namespace gfx
38 #endif // UI_GL_GL_CONTEXT_STUB_WITH_EXTENSIONS_H_