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 #include "ui/gl/gl_context_stub_with_extensions.h"
9 void GLContextStubWithExtensions::AddExtensionsString(const char* extensions
) {
10 if (extensions
== nullptr)
13 if (extensions_
.size() != 0)
15 extensions_
+= extensions
;
18 std::string
GLContextStubWithExtensions::GetExtensions() {
22 void GLContextStubWithExtensions::SetGLVersionString(const char* version_str
) {
23 version_str_
= std::string(version_str
? version_str
: "");
26 std::string
GLContextStubWithExtensions::GetGLVersion() {
30 bool GLContextStubWithExtensions::WasAllocatedUsingRobustnessExtension() {
31 return HasExtension("GL_ARB_robustness") ||
32 HasExtension("GL_KHR_robustness") ||
33 HasExtension("GL_EXT_robustness");