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

Side by Side Diff: cc/output/delegating_renderer.cc

Issue 1469863003: Cleanup SurfaceVisibility code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup surface visibility completely. Created 5 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
« no previous file with comments | « no previous file | cc/output/gl_renderer.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 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 #include "cc/output/delegating_renderer.h" 5 #include "cc/output/delegating_renderer.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 ContextProvider* context_provider = output_surface_->context_provider(); 109 ContextProvider* context_provider = output_surface_->context_provider();
110 if (!visible()) { 110 if (!visible()) {
111 TRACE_EVENT0("cc", "DelegatingRenderer::SetVisible dropping resources"); 111 TRACE_EVENT0("cc", "DelegatingRenderer::SetVisible dropping resources");
112 if (context_provider) { 112 if (context_provider) {
113 context_provider->DeleteCachedResources(); 113 context_provider->DeleteCachedResources();
114 context_provider->ContextGL()->Flush(); 114 context_provider->ContextGL()->Flush();
115 } 115 }
116 } 116 }
117 // We loop visibility to the GPU process, since that's what manages memory. 117 // We loop visibility to the GPU process, since that's what manages memory.
118 // That will allow it to feed us with memory allocations that we can act 118 // That will allow it to feed us with memory allocations that we can act
119 // upon. 119 // upon.
piman 2015/11/24 21:43:51 nit: You can remove this comment (which isn't true
sohanjg 2015/11/25 07:37:17 Done.
120 if (context_provider) { 120 if (context_provider) {
121 context_provider->ContextSupport()->SetSurfaceVisible(visible());
122
123 // If we are not visible, we ask the context to aggressively free resources. 121 // If we are not visible, we ask the context to aggressively free resources.
124 context_provider->ContextSupport()->SetAggressivelyFreeResources( 122 context_provider->ContextSupport()->SetAggressivelyFreeResources(
125 !visible()); 123 !visible());
126 } 124 }
127 } 125 }
128 126
129 } // namespace cc 127 } // namespace cc
OLDNEW
« no previous file with comments | « no previous file | cc/output/gl_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698