Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: ui/gl/gl_context_glx.cc

Issue 11275120: Virtual GL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/gl/gl_context_egl.cc ('k') | ui/gl/gl_context_osmesa.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « ui/gl/gl_context_egl.cc ('k') | ui/gl/gl_context_osmesa.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698