| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 extern "C" { | 5 extern "C" { |
| 6 #include <X11/Xlib.h> | 6 #include <X11/Xlib.h> |
| 7 } | 7 } |
| 8 | 8 |
| 9 #include "ui/gl/gl_context_glx.h" | 9 #include "ui/gl/gl_context_glx.h" |
| 10 | 10 |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 return false; | 172 return false; |
| 173 } | 173 } |
| 174 | 174 |
| 175 if (!surface->OnMakeCurrent(this)) { | 175 if (!surface->OnMakeCurrent(this)) { |
| 176 LOG(ERROR) << "Could not make current."; | 176 LOG(ERROR) << "Could not make current."; |
| 177 ReleaseCurrent(surface); | 177 ReleaseCurrent(surface); |
| 178 Destroy(); | 178 Destroy(); |
| 179 return false; | 179 return false; |
| 180 } | 180 } |
| 181 | 181 |
| 182 SetRealGLApi(); |
| 182 return true; | 183 return true; |
| 183 } | 184 } |
| 184 | 185 |
| 185 void GLContextGLX::ReleaseCurrent(GLSurface* surface) { | 186 void GLContextGLX::ReleaseCurrent(GLSurface* surface) { |
| 186 if (!IsCurrent(surface)) | 187 if (!IsCurrent(surface)) |
| 187 return; | 188 return; |
| 188 | 189 |
| 189 SetCurrent(NULL, NULL); | 190 SetCurrent(NULL, NULL); |
| 190 if (!glXMakeCurrent(display_, 0, 0)) | 191 if (!glXMakeCurrent(display_, 0, 0)) |
| 191 LOG(ERROR) << "glXMakeCurrent failed in ReleaseCurrent"; | 192 LOG(ERROR) << "glXMakeCurrent failed in ReleaseCurrent"; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 | 261 |
| 261 bool GLContextGLX::WasAllocatedUsingRobustnessExtension() { | 262 bool GLContextGLX::WasAllocatedUsingRobustnessExtension() { |
| 262 return GLSurfaceGLX::IsCreateContextRobustnessSupported(); | 263 return GLSurfaceGLX::IsCreateContextRobustnessSupported(); |
| 263 } | 264 } |
| 264 | 265 |
| 265 GLContextGLX::~GLContextGLX() { | 266 GLContextGLX::~GLContextGLX() { |
| 266 Destroy(); | 267 Destroy(); |
| 267 } | 268 } |
| 268 | 269 |
| 269 } // namespace gfx | 270 } // namespace gfx |
| OLD | NEW |