OLD | NEW |
---|---|
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 CHROME_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_TOUCH_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_TOUCH_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_TOUCH_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_TOUCH_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "ui/gfx/compositor/compositor_gl.h" | 10 #include "ui/gfx/compositor/compositor_gl.h" |
11 #include "ui/gfx/surface/transport_dib.h" | |
11 | 12 |
12 // Helper class for storing image data from the GPU process renderered | 13 // Helper class for storing image data from the GPU process renderered |
13 // on behalf of the RWHVV. It assumes that GL context that will display | 14 // on behalf of the RWHVV. It assumes that GL context that will display |
14 // the image data is current when an instance of this object is created | 15 // the image data is current when an instance of this object is created |
15 // or destroyed. | 16 // or destroyed. |
16 class AcceleratedSurfaceContainerTouch : public ui::TextureGL { | 17 class AcceleratedSurfaceContainerTouch : public ui::TextureGL { |
17 public: | 18 public: |
18 static AcceleratedSurfaceContainerTouch* CreateAcceleratedSurfaceContainer( | 19 static AcceleratedSurfaceContainerTouch* CreateAcceleratedSurfaceContainer( |
19 const gfx::Size& size, | 20 const gfx::Size& size, |
20 uint64 surface_handle); | 21 uint64 surface_id); |
21 | 22 |
22 // TextureGL implementation | 23 // TextureGL implementation |
23 virtual void SetCanvas(const SkCanvas& canvas, | 24 virtual void SetCanvas(const SkCanvas& canvas, |
24 const gfx::Point& origin, | 25 const gfx::Point& origin, |
25 const gfx::Size& overall_size) OVERRIDE; | 26 const gfx::Size& overall_size) OVERRIDE; |
26 | 27 |
28 virtual uint64 id() const; | |
29 | |
30 // Some implementations of this class use shared memory, this the handle | |
31 // to the shared buffer, which is part of the surface container. | |
32 virtual TransportDIB::Handle handle() const; | |
33 | |
27 protected: | 34 protected: |
28 explicit AcceleratedSurfaceContainerTouch(const gfx::Size& size); | 35 explicit AcceleratedSurfaceContainerTouch(const gfx::Size& size, |
36 uint64 surface_id); | |
29 | 37 |
30 private: | 38 private: |
39 uint64 id_; | |
jonathan.backer
2011/09/20 15:16:29
Nuke this?
| |
40 | |
31 DISALLOW_COPY_AND_ASSIGN(AcceleratedSurfaceContainerTouch); | 41 DISALLOW_COPY_AND_ASSIGN(AcceleratedSurfaceContainerTouch); |
32 }; | 42 }; |
33 | 43 |
34 #endif // CHROME_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_TOUCH_H_ | 44 #endif // CHROME_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_TOUCH_H_ |
OLD | NEW |