OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 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 CC_PROXY_H_ | 5 #ifndef CC_PROXY_H_ |
6 #define CC_PROXY_H_ | 6 #define CC_PROXY_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/memory/scoped_ptr.h" |
10 #include "base/time.h" | 11 #include "base/time.h" |
11 #include "base/memory/scoped_ptr.h" | |
12 #include "cc/cc_export.h" | 12 #include "cc/cc_export.h" |
| 13 #include "skia/ext/refptr.h" |
| 14 #include "third_party/skia/include/core/SkPicture.h" |
13 | 15 |
14 namespace gfx { | 16 namespace gfx { |
15 class Rect; | 17 class Rect; |
16 class Vector2d; | 18 class Vector2d; |
17 } | 19 } |
18 | 20 |
19 namespace cc { | 21 namespace cc { |
20 | 22 |
21 class Thread; | 23 class Thread; |
22 struct RenderingStats; | 24 struct RenderingStats; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 | 91 |
90 // Forces 3D commands on all contexts to wait for all previous SwapBuffers t
o finish before executing in the GPU | 92 // Forces 3D commands on all contexts to wait for all previous SwapBuffers t
o finish before executing in the GPU |
91 // process. | 93 // process. |
92 virtual void forceSerializeOnSwapBuffers() = 0; | 94 virtual void forceSerializeOnSwapBuffers() = 0; |
93 | 95 |
94 // Maximum number of sub-region texture updates supported for each commit. | 96 // Maximum number of sub-region texture updates supported for each commit. |
95 virtual size_t maxPartialTextureUpdates() const = 0; | 97 virtual size_t maxPartialTextureUpdates() const = 0; |
96 | 98 |
97 virtual void acquireLayerTextures() = 0; | 99 virtual void acquireLayerTextures() = 0; |
98 | 100 |
| 101 virtual skia::RefPtr<SkPicture> capturePicture() = 0; |
| 102 |
99 // Testing hooks | 103 // Testing hooks |
100 virtual bool commitPendingForTesting() = 0; | 104 virtual bool commitPendingForTesting() = 0; |
101 | 105 |
102 protected: | 106 protected: |
103 explicit Proxy(scoped_ptr<Thread> implThread); | 107 explicit Proxy(scoped_ptr<Thread> implThread); |
104 friend class DebugScopedSetImplThread; | 108 friend class DebugScopedSetImplThread; |
105 friend class DebugScopedSetMainThread; | 109 friend class DebugScopedSetMainThread; |
106 friend class DebugScopedSetMainThreadBlocked; | 110 friend class DebugScopedSetMainThreadBlocked; |
107 | 111 |
108 private: | 112 private: |
(...skipping 28 matching lines...) Expand all Loading... |
137 class DebugScopedSetMainThreadBlocked { | 141 class DebugScopedSetMainThreadBlocked { |
138 public: | 142 public: |
139 explicit DebugScopedSetMainThreadBlocked(Proxy*) { } | 143 explicit DebugScopedSetMainThreadBlocked(Proxy*) { } |
140 ~DebugScopedSetMainThreadBlocked() { } | 144 ~DebugScopedSetMainThreadBlocked() { } |
141 }; | 145 }; |
142 #endif | 146 #endif |
143 | 147 |
144 } | 148 } |
145 | 149 |
146 #endif // CC_PROXY_H_ | 150 #endif // CC_PROXY_H_ |
OLD | NEW |