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

Side by Side Diff: ui/gfx/surface/accelerated_surface_wayland.h

Issue 7467007: Adding Wayland support for ui/gfx (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Adding missing WaylandDisplay include Created 9 years, 4 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/screen_wayland.cc ('k') | ui/gfx/surface/accelerated_surface_wayland.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef UI_GFX_SURFACE_ACCELERATED_SURFACE_LINUX_H_
6 #define UI_GFX_SURFACE_ACCELERATED_SURFACE_LINUX_H_
7 #pragma once
8
9 #include "base/memory/ref_counted.h"
10 #include "ui/gfx/size.h"
11
12 struct wl_egl_pixmap;
13
14 // The GL context associated with the surface must be current when
15 // an instance is created or destroyed.
16 class AcceleratedSurface : public base::RefCounted<AcceleratedSurface> {
17 public:
18 AcceleratedSurface(const gfx::Size& size);
19 const gfx::Size& size() const { return size_; }
20 // The pointer returned is owned by this object
21 wl_egl_pixmap* pixmap() const { return pixmap_; }
22 uint32 texture() const { return texture_; }
23
24 private:
25 friend class base::RefCounted<AcceleratedSurface>;
26
27 ~AcceleratedSurface();
28
29 gfx::Size size_;
30 void* image_;
31 wl_egl_pixmap* pixmap_;
32 uint32 texture_;
33
34 DISALLOW_COPY_AND_ASSIGN(AcceleratedSurface);
35 };
36
37 #endif // UI_GFX_SURFACE_ACCELERATED_SURFACE_LINUX_H_
OLDNEW
« no previous file with comments | « ui/gfx/screen_wayland.cc ('k') | ui/gfx/surface/accelerated_surface_wayland.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698