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

Side by Side Diff: cc/output/output_surface_client.h

Issue 2147873003: cc: Dedup IPCs to return resources to client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 5 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
« no previous file with comments | « cc/output/output_surface.cc ('k') | cc/output/renderer.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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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_OUTPUT_OUTPUT_SURFACE_CLIENT_H_ 5 #ifndef CC_OUTPUT_OUTPUT_SURFACE_CLIENT_H_
6 #define CC_OUTPUT_OUTPUT_SURFACE_CLIENT_H_ 6 #define CC_OUTPUT_OUTPUT_SURFACE_CLIENT_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
11 #include "cc/base/cc_export.h" 11 #include "cc/base/cc_export.h"
12 #include "cc/output/context_provider.h" 12 #include "cc/output/context_provider.h"
13 #include "cc/resources/returned_resource.h"
13 #include "gpu/command_buffer/common/texture_in_use_response.h" 14 #include "gpu/command_buffer/common/texture_in_use_response.h"
14 #include "ui/gfx/geometry/rect.h" 15 #include "ui/gfx/geometry/rect.h"
15 16
16 namespace gfx { 17 namespace gfx {
17 class Transform; 18 class Transform;
18 } 19 }
19 20
20 namespace cc { 21 namespace cc {
21 22
22 class BeginFrameSource; 23 class BeginFrameSource;
23 class CompositorFrameAck;
24 struct ManagedMemoryPolicy; 24 struct ManagedMemoryPolicy;
25 25
26 class CC_EXPORT OutputSurfaceClient { 26 class CC_EXPORT OutputSurfaceClient {
27 public: 27 public:
28 // TODO(enne): Remove this in favor of using SetBeginFrameSource. 28 // TODO(enne): Remove this in favor of using SetBeginFrameSource.
29 virtual void CommitVSyncParameters(base::TimeTicks timebase, 29 virtual void CommitVSyncParameters(base::TimeTicks timebase,
30 base::TimeDelta interval) = 0; 30 base::TimeDelta interval) = 0;
31 // Pass the begin frame source for the client to observe. Client does not own 31 // Pass the begin frame source for the client to observe. Client does not own
32 // the BeginFrameSource. OutputSurface should call this once after binding to 32 // the BeginFrameSource. OutputSurface should call this once after binding to
33 // the client and then call again with a null while detaching. 33 // the client and then call again with a null while detaching.
34 virtual void SetBeginFrameSource(BeginFrameSource* source) = 0; 34 virtual void SetBeginFrameSource(BeginFrameSource* source) = 0;
35 35
36 virtual void SetNeedsRedrawRect(const gfx::Rect& damage_rect) = 0; 36 virtual void SetNeedsRedrawRect(const gfx::Rect& damage_rect) = 0;
37 // For LayerTreeHostImpl, this is more of a OnSwapBuffersAck from the display 37 // For LayerTreeHostImpl, this is more of a OnSwapBuffersAck from the display
38 // compositor that it received and will use the frame, unblocking it from 38 // compositor that it received and will use the frame, unblocking it from
39 // producing more frames. 39 // producing more frames.
40 // For the display compositor this is literally a notification that the swap 40 // For the display compositor this is literally a notification that the swap
41 // to the hardware is complete. 41 // to the hardware is complete.
42 virtual void DidSwapBuffersComplete() = 0; 42 virtual void DidSwapBuffersComplete() = 0;
43 virtual void DidReceiveTextureInUseResponses( 43 virtual void DidReceiveTextureInUseResponses(
44 const gpu::TextureInUseResponses& responses) = 0; 44 const gpu::TextureInUseResponses& responses) = 0;
45 virtual void ReclaimResources(const CompositorFrameAck* ack) = 0; 45 virtual void ReclaimResources(const ReturnedResourceArray& resources) = 0;
46 virtual void DidLoseOutputSurface() = 0; 46 virtual void DidLoseOutputSurface() = 0;
47 virtual void SetExternalTilePriorityConstraints( 47 virtual void SetExternalTilePriorityConstraints(
48 const gfx::Rect& viewport_rect, 48 const gfx::Rect& viewport_rect,
49 const gfx::Transform& transform) = 0; 49 const gfx::Transform& transform) = 0;
50 virtual void SetMemoryPolicy(const ManagedMemoryPolicy& policy) = 0; 50 virtual void SetMemoryPolicy(const ManagedMemoryPolicy& policy) = 0;
51 // If set, |callback| will be called subsequent to each new tree activation, 51 // If set, |callback| will be called subsequent to each new tree activation,
52 // regardless of the compositor visibility or damage. |callback| must remain 52 // regardless of the compositor visibility or damage. |callback| must remain
53 // valid for the lifetime of the OutputSurfaceClient or until unregisted -- 53 // valid for the lifetime of the OutputSurfaceClient or until unregisted --
54 // use SetTreeActivationCallback(base::Closure()) to unregister it. 54 // use SetTreeActivationCallback(base::Closure()) to unregister it.
55 virtual void SetTreeActivationCallback(const base::Closure& callback) = 0; 55 virtual void SetTreeActivationCallback(const base::Closure& callback) = 0;
56 // This allows the output surface to ask its client for a draw. 56 // This allows the output surface to ask its client for a draw.
57 virtual void OnDraw(const gfx::Transform& transform, 57 virtual void OnDraw(const gfx::Transform& transform,
58 const gfx::Rect& viewport, 58 const gfx::Rect& viewport,
59 const gfx::Rect& clip, 59 const gfx::Rect& clip,
60 bool resourceless_software_draw) = 0; 60 bool resourceless_software_draw) = 0;
61 61
62 protected: 62 protected:
63 virtual ~OutputSurfaceClient() {} 63 virtual ~OutputSurfaceClient() {}
64 }; 64 };
65 65
66 } // namespace cc 66 } // namespace cc
67 67
68 #endif // CC_OUTPUT_OUTPUT_SURFACE_CLIENT_H_ 68 #endif // CC_OUTPUT_OUTPUT_SURFACE_CLIENT_H_
OLDNEW
« no previous file with comments | « cc/output/output_surface.cc ('k') | cc/output/renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698