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

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

Issue 7659015: Revert 96982 - Add gl.dll, compositor.dll, and surface.dll. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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/gl/gl_switches.h ('k') | ui/gfx/surface/accelerated_surface_mac.h » ('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) 2011 The Chromium Authors. All rights reserved. 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 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 #ifndef UI_GFX_SURFACE_ACCELERATED_SURFACE_LINUX_H_ 5 #ifndef UI_GFX_SURFACE_ACCELERATED_SURFACE_LINUX_H_
6 #define UI_GFX_SURFACE_ACCELERATED_SURFACE_LINUX_H_ 6 #define UI_GFX_SURFACE_ACCELERATED_SURFACE_LINUX_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "ui/gfx/size.h" 10 #include "ui/gfx/size.h"
11 #include "ui/gfx/surface/surface_export.h"
12 11
13 // The GL context associated with the surface must be current when 12 // The GL context associated with the surface must be current when
14 // an instance is created or destroyed. 13 // an instance is created or destroyed.
15 class SURFACE_EXPORT AcceleratedSurface 14 class AcceleratedSurface : public base::RefCounted<AcceleratedSurface> {
16 : public base::RefCounted<AcceleratedSurface> {
17 public: 15 public:
18 AcceleratedSurface(const gfx::Size& size); 16 AcceleratedSurface(const gfx::Size& size);
19 const gfx::Size& size() const { return size_; } 17 const gfx::Size& size() const { return size_; }
20 uint32 pixmap() const { return pixmap_; } 18 uint32 pixmap() const { return pixmap_; }
21 uint32 texture() const { return texture_; } 19 uint32 texture() const { return texture_; }
22 20
23 private: 21 private:
24 ~AcceleratedSurface(); 22 ~AcceleratedSurface();
25 23
26 gfx::Size size_; 24 gfx::Size size_;
27 void* image_; 25 void* image_;
28 uint32 pixmap_; 26 uint32 pixmap_;
29 uint32 texture_; 27 uint32 texture_;
30 28
31 friend class base::RefCounted<AcceleratedSurface>; 29 friend class base::RefCounted<AcceleratedSurface>;
32 DISALLOW_COPY_AND_ASSIGN(AcceleratedSurface); 30 DISALLOW_COPY_AND_ASSIGN(AcceleratedSurface);
33 }; 31 };
34 32
35 #endif // UI_GFX_SURFACE_ACCELERATED_SURFACE_LINUX_H_ 33 #endif // UI_GFX_SURFACE_ACCELERATED_SURFACE_LINUX_H_
OLDNEW
« no previous file with comments | « ui/gfx/gl/gl_switches.h ('k') | ui/gfx/surface/accelerated_surface_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698