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_surface_glx.h" | 9 #include "ui/gl/gl_surface_glx.h" |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/debug/trace_event.h" | 12 #include "base/debug/trace_event.h" |
13 #include "base/lazy_instance.h" | 13 #include "base/lazy_instance.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
17 #include "base/message_loop/message_loop.h" | 17 #include "base/message_loop/message_loop.h" |
18 #include "base/synchronization/cancellation_flag.h" | 18 #include "base/synchronization/cancellation_flag.h" |
19 #include "base/synchronization/lock.h" | 19 #include "base/synchronization/lock.h" |
20 #include "base/threading/non_thread_safe.h" | 20 #include "base/threading/non_thread_safe.h" |
21 #include "base/threading/thread.h" | 21 #include "base/threading/thread.h" |
22 #include "base/time/time.h" | 22 #include "base/time/time.h" |
23 #include "third_party/mesa/src/include/GL/osmesa.h" | 23 #include "third_party/mesa/src/include/GL/osmesa.h" |
| 24 #include "ui/gfx/x/x11_connection.h" |
24 #include "ui/gfx/x/x11_types.h" | 25 #include "ui/gfx/x/x11_types.h" |
25 #include "ui/gl/gl_bindings.h" | 26 #include "ui/gl/gl_bindings.h" |
26 #include "ui/gl/gl_implementation.h" | 27 #include "ui/gl/gl_implementation.h" |
27 #include "ui/gl/sync_control_vsync_provider.h" | 28 #include "ui/gl/sync_control_vsync_provider.h" |
28 | 29 |
29 namespace gfx { | 30 namespace gfx { |
30 | 31 |
31 namespace { | 32 namespace { |
32 | 33 |
33 // scoped_ptr functor for XFree(). Use as follows: | 34 // scoped_ptr functor for XFree(). Use as follows: |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 bool GLSurfaceGLX::InitializeOneOff() { | 307 bool GLSurfaceGLX::InitializeOneOff() { |
307 static bool initialized = false; | 308 static bool initialized = false; |
308 if (initialized) | 309 if (initialized) |
309 return true; | 310 return true; |
310 | 311 |
311 // http://crbug.com/245466 | 312 // http://crbug.com/245466 |
312 setenv("force_s3tc_enable", "true", 1); | 313 setenv("force_s3tc_enable", "true", 1); |
313 | 314 |
314 // SGIVideoSyncProviderShim (if instantiated) will issue X commands on | 315 // SGIVideoSyncProviderShim (if instantiated) will issue X commands on |
315 // it's own thread. | 316 // it's own thread. |
316 XInitThreads(); | 317 gfx::InitializeThreadedX11(); |
317 | 318 g_display = gfx::GetXDisplay(); |
318 g_display = base::MessagePumpForUI::GetDefaultXDisplay(); | |
319 | 319 |
320 if (!g_display) { | 320 if (!g_display) { |
321 LOG(ERROR) << "XOpenDisplay failed."; | 321 LOG(ERROR) << "XOpenDisplay failed."; |
322 return false; | 322 return false; |
323 } | 323 } |
324 | 324 |
325 int major, minor; | 325 int major, minor; |
326 if (!glXQueryVersion(g_display, &major, &minor)) { | 326 if (!glXQueryVersion(g_display, &major, &minor)) { |
327 LOG(ERROR) << "glxQueryVersion failed"; | 327 LOG(ERROR) << "glxQueryVersion failed"; |
328 return false; | 328 return false; |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
614 | 614 |
615 void* PbufferGLSurfaceGLX::GetConfig() { | 615 void* PbufferGLSurfaceGLX::GetConfig() { |
616 return config_; | 616 return config_; |
617 } | 617 } |
618 | 618 |
619 PbufferGLSurfaceGLX::~PbufferGLSurfaceGLX() { | 619 PbufferGLSurfaceGLX::~PbufferGLSurfaceGLX() { |
620 Destroy(); | 620 Destroy(); |
621 } | 621 } |
622 | 622 |
623 } // namespace gfx | 623 } // namespace gfx |
OLD | NEW |