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 CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_LINUX_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_LINUX_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_LINUX_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_LINUX_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.h" |
11 #include "ui/gfx/surface/transport_dib.h" | 11 #include "ui/gfx/surface/transport_dib.h" |
12 | 12 |
13 // Helper class for storing image data from the GPU process renderered | 13 // Helper class for storing image data from the GPU process renderered |
14 // 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 |
15 // 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 |
16 // or destroyed. | 16 // or destroyed. |
17 class AcceleratedSurfaceContainerLinux : public ui::TextureGL { | 17 class AcceleratedSurfaceContainerLinux { |
18 public: | 18 public: |
19 static AcceleratedSurfaceContainerLinux* CreateAcceleratedSurfaceContainer( | 19 virtual ~AcceleratedSurfaceContainerLinux() { } |
20 const gfx::Size& size); | 20 virtual void AddRef() = 0; |
21 | 21 virtual void Release() = 0; |
22 // TextureGL implementation | |
23 virtual void SetCanvas(const SkCanvas& canvas, | |
24 const gfx::Point& origin, | |
25 const gfx::Size& overall_size) OVERRIDE; | |
26 | 22 |
27 // Initialize the surface container, and returns an ID for it. | 23 // Initialize the surface container, and returns an ID for it. |
28 // The |surface_id| given to this function may be modified, and the modified | 24 // The |surface_id| given to this function may be modified, and the modified |
29 // value should be used to identify the object. | 25 // value should be used to identify the object. |
30 virtual bool Initialize(uint64* surface_id) = 0; | 26 virtual bool Initialize(uint64* surface_id) = 0; |
31 | 27 |
32 // Some implementations of this class use shared memory, this is the handle | 28 // Some implementations of this class use shared memory, this is the handle |
33 // to the shared buffer, which is part of the surface container. | 29 // to the shared buffer, which is part of the surface container. |
34 virtual TransportDIB::Handle Handle() const; | 30 virtual TransportDIB::Handle Handle() const = 0; |
35 | 31 |
36 protected: | 32 virtual ui::Texture* GetTexture() = 0; |
37 explicit AcceleratedSurfaceContainerLinux(const gfx::Size& size); | |
38 | 33 |
39 private: | 34 static AcceleratedSurfaceContainerLinux* Create(const gfx::Size& size); |
40 DISALLOW_COPY_AND_ASSIGN(AcceleratedSurfaceContainerLinux); | |
41 }; | 35 }; |
42 | 36 |
43 #endif // CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_LINUX_H_ | 37 #endif // CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_LINUX_H_ |
44 | |
OLD | NEW |