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

Side by Side Diff: ui/gfx/x/x11_types.cc

Issue 235043005: x11: Remove X11 message-pump. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge Created 6 years, 8 months 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/gfx/x/x11_connection.cc ('k') | ui/gl/gl_image_glx.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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #include "ui/gfx/x/x11_types.h" 5 #include "ui/gfx/x/x11_types.h"
6 6
7 #include <X11/Xlib.h> 7 #include <X11/Xlib.h>
8 8
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 10
11 namespace gfx { 11 namespace gfx {
12 12
13 XDisplay* GetXDisplay() { 13 XDisplay* GetXDisplay() {
14 return base::MessagePumpForUI::GetDefaultXDisplay(); 14 static XDisplay* display = NULL;
15 if (!display)
16 display = XOpenDisplay(NULL);
17 return display;
15 } 18 }
16 19
17 void PutARGBImage(XDisplay* display, 20 void PutARGBImage(XDisplay* display,
18 void* visual, int depth, 21 void* visual, int depth,
19 XID pixmap, void* pixmap_gc, 22 XID pixmap, void* pixmap_gc,
20 const uint8* data, 23 const uint8* data,
21 int width, int height) { 24 int width, int height) {
22 PutARGBImage(display, 25 PutARGBImage(display,
23 visual, depth, 26 visual, depth,
24 pixmap, pixmap_gc, 27 pixmap, pixmap_gc,
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 free(orig_bitmap16); 149 free(orig_bitmap16);
147 } else { 150 } else {
148 LOG(FATAL) << "Sorry, we don't support your visual depth without " 151 LOG(FATAL) << "Sorry, we don't support your visual depth without "
149 "Xrender support (depth:" << depth 152 "Xrender support (depth:" << depth
150 << " bpp:" << pixmap_bpp << ")"; 153 << " bpp:" << pixmap_bpp << ")";
151 } 154 }
152 } 155 }
153 156
154 } // namespace gfx 157 } // namespace gfx
155 158
OLDNEW
« no previous file with comments | « ui/gfx/x/x11_connection.cc ('k') | ui/gl/gl_image_glx.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698