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

Side by Side Diff: cc/trees/single_thread_proxy.h

Issue 85693007: cc: Defer first OutputSurface creation until client is ready (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years 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 | « cc/trees/proxy.h ('k') | cc/trees/single_thread_proxy.cc » ('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 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_TREES_SINGLE_THREAD_PROXY_H_ 5 #ifndef CC_TREES_SINGLE_THREAD_PROXY_H_
6 #define CC_TREES_SINGLE_THREAD_PROXY_H_ 6 #define CC_TREES_SINGLE_THREAD_PROXY_H_
7 7
8 #include <limits> 8 #include <limits>
9 9
10 #include "base/time/time.h" 10 #include "base/time/time.h"
(...skipping 26 matching lines...) Expand all
37 virtual void SetNeedsAnimate() OVERRIDE; 37 virtual void SetNeedsAnimate() OVERRIDE;
38 virtual void SetNeedsUpdateLayers() OVERRIDE; 38 virtual void SetNeedsUpdateLayers() OVERRIDE;
39 virtual void SetNeedsCommit() OVERRIDE; 39 virtual void SetNeedsCommit() OVERRIDE;
40 virtual void SetNeedsRedraw(gfx::Rect damage_rect) OVERRIDE; 40 virtual void SetNeedsRedraw(gfx::Rect damage_rect) OVERRIDE;
41 virtual void SetNextCommitWaitsForActivation() OVERRIDE; 41 virtual void SetNextCommitWaitsForActivation() OVERRIDE;
42 virtual void NotifyInputThrottledUntilCommit() OVERRIDE {} 42 virtual void NotifyInputThrottledUntilCommit() OVERRIDE {}
43 virtual void SetDeferCommits(bool defer_commits) OVERRIDE; 43 virtual void SetDeferCommits(bool defer_commits) OVERRIDE;
44 virtual bool CommitRequested() const OVERRIDE; 44 virtual bool CommitRequested() const OVERRIDE;
45 virtual bool BeginMainFrameRequested() const OVERRIDE; 45 virtual bool BeginMainFrameRequested() const OVERRIDE;
46 virtual void MainThreadHasStoppedFlinging() OVERRIDE {} 46 virtual void MainThreadHasStoppedFlinging() OVERRIDE {}
47 virtual void Start(scoped_ptr<OutputSurface> first_output_surface) OVERRIDE; 47 virtual void Start() OVERRIDE;
48 virtual void Stop() OVERRIDE; 48 virtual void Stop() OVERRIDE;
49 virtual size_t MaxPartialTextureUpdates() const OVERRIDE; 49 virtual size_t MaxPartialTextureUpdates() const OVERRIDE;
50 virtual void AcquireLayerTextures() OVERRIDE {} 50 virtual void AcquireLayerTextures() OVERRIDE {}
51 virtual void ForceSerializeOnSwapBuffers() OVERRIDE; 51 virtual void ForceSerializeOnSwapBuffers() OVERRIDE;
52 virtual scoped_ptr<base::Value> AsValue() const OVERRIDE; 52 virtual scoped_ptr<base::Value> AsValue() const OVERRIDE;
53 virtual bool CommitPendingForTesting() OVERRIDE; 53 virtual bool CommitPendingForTesting() OVERRIDE;
54 54
55 // LayerTreeHostImplClient implementation 55 // LayerTreeHostImplClient implementation
56 virtual void DidLoseOutputSurfaceOnImplThread() OVERRIDE; 56 virtual void DidLoseOutputSurfaceOnImplThread() OVERRIDE;
57 virtual void DidSwapBuffersOnImplThread() OVERRIDE; 57 virtual void DidSwapBuffersOnImplThread() OVERRIDE;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 void DidSwapFrame(); 100 void DidSwapFrame();
101 101
102 bool ShouldComposite() const; 102 bool ShouldComposite() const;
103 void UpdateBackgroundAnimateTicking(); 103 void UpdateBackgroundAnimateTicking();
104 104
105 // Accessed on main thread only. 105 // Accessed on main thread only.
106 LayerTreeHost* layer_tree_host_; 106 LayerTreeHost* layer_tree_host_;
107 LayerTreeHostSingleThreadClient* client_; 107 LayerTreeHostSingleThreadClient* client_;
108 bool created_offscreen_context_provider_; 108 bool created_offscreen_context_provider_;
109 109
110 // Holds the first output surface passed from Start. Should not be used for
111 // anything else.
112 scoped_ptr<OutputSurface> first_output_surface_;
113
114 // Used on the Thread, but checked on main thread during 110 // Used on the Thread, but checked on main thread during
115 // initialization/shutdown. 111 // initialization/shutdown.
116 scoped_ptr<LayerTreeHostImpl> layer_tree_host_impl_; 112 scoped_ptr<LayerTreeHostImpl> layer_tree_host_impl_;
117 RendererCapabilities renderer_capabilities_for_main_thread_; 113 RendererCapabilities renderer_capabilities_for_main_thread_;
118 114
119 bool next_frame_is_newly_committed_frame_; 115 bool next_frame_is_newly_committed_frame_;
120 116
121 bool inside_draw_; 117 bool inside_draw_;
122 118
123 DISALLOW_COPY_AND_ASSIGN(SingleThreadProxy); 119 DISALLOW_COPY_AND_ASSIGN(SingleThreadProxy);
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 private: 176 private:
181 DebugScopedSetImplThread impl_thread_; 177 DebugScopedSetImplThread impl_thread_;
182 DebugScopedSetMainThreadBlocked main_thread_blocked_; 178 DebugScopedSetMainThreadBlocked main_thread_blocked_;
183 179
184 DISALLOW_COPY_AND_ASSIGN(DebugScopedSetImplThreadAndMainThreadBlocked); 180 DISALLOW_COPY_AND_ASSIGN(DebugScopedSetImplThreadAndMainThreadBlocked);
185 }; 181 };
186 182
187 } // namespace cc 183 } // namespace cc
188 184
189 #endif // CC_TREES_SINGLE_THREAD_PROXY_H_ 185 #endif // CC_TREES_SINGLE_THREAD_PROXY_H_
OLDNEW
« no previous file with comments | « cc/trees/proxy.h ('k') | cc/trees/single_thread_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698