summaryrefslogtreecommitdiffstats
path: root/ui/gl/gl_surface_glx.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gl/gl_surface_glx.cc')
-rw-r--r--ui/gl/gl_surface_glx.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/gl/gl_surface_glx.cc b/ui/gl/gl_surface_glx.cc
index 6e16754..f810114 100644
--- a/ui/gl/gl_surface_glx.cc
+++ b/ui/gl/gl_surface_glx.cc
@@ -122,7 +122,7 @@ bool NativeViewGLSurfaceGLX::Resize(const gfx::Size& size) {
// On Intel drivers, the frame buffer won't be resize until the next swap. If
// we only do PostSubBuffer, then we're stuck in the old size. Force a swap
// now.
- if (gfx::g_GLX_MESA_copy_sub_buffer && size_ != size)
+ if (gfx::g_driver_glx.ext.b_GLX_MESA_copy_sub_buffer && size_ != size)
SwapBuffers();
size_ = size;
return true;
@@ -149,7 +149,7 @@ void* NativeViewGLSurfaceGLX::GetHandle() {
std::string NativeViewGLSurfaceGLX::GetExtensions() {
std::string extensions = GLSurface::GetExtensions();
- if (g_GLX_MESA_copy_sub_buffer) {
+ if (gfx::g_driver_glx.ext.b_GLX_MESA_copy_sub_buffer) {
extensions += extensions.empty() ? "" : " ";
extensions += "GL_CHROMIUM_post_sub_buffer";
}
@@ -219,7 +219,7 @@ void* NativeViewGLSurfaceGLX::GetConfig() {
bool NativeViewGLSurfaceGLX::PostSubBuffer(
int x, int y, int width, int height) {
- DCHECK(g_GLX_MESA_copy_sub_buffer);
+ DCHECK(gfx::g_driver_glx.ext.b_GLX_MESA_copy_sub_buffer);
glXCopySubBufferMESA(g_display, window_, x, y, width, height);
return true;
}