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

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

Issue 53633003: Do not give GPU memory to backgrounded compositors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove test Created 7 years, 1 month 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/output/output_surface.cc ('k') | cc/output/output_surface_unittest.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 #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"
(...skipping 21 matching lines...) Expand all
32 virtual void ReleaseGL() = 0; 32 virtual void ReleaseGL() = 0;
33 virtual void SetNeedsRedrawRect(gfx::Rect damage_rect) = 0; 33 virtual void SetNeedsRedrawRect(gfx::Rect damage_rect) = 0;
34 virtual void BeginImplFrame(const BeginFrameArgs& args) = 0; 34 virtual void BeginImplFrame(const BeginFrameArgs& args) = 0;
35 virtual void OnSwapBuffersComplete() = 0; 35 virtual void OnSwapBuffersComplete() = 0;
36 virtual void ReclaimResources(const CompositorFrameAck* ack) = 0; 36 virtual void ReclaimResources(const CompositorFrameAck* ack) = 0;
37 virtual void DidLoseOutputSurface() = 0; 37 virtual void DidLoseOutputSurface() = 0;
38 virtual void SetExternalDrawConstraints(const gfx::Transform& transform, 38 virtual void SetExternalDrawConstraints(const gfx::Transform& transform,
39 gfx::Rect viewport, 39 gfx::Rect viewport,
40 gfx::Rect clip, 40 gfx::Rect clip,
41 bool valid_for_tile_management) = 0; 41 bool valid_for_tile_management) = 0;
42 virtual void SetDiscardBackBufferWhenNotVisible(bool discard) = 0;
43 virtual void SetMemoryPolicy(const ManagedMemoryPolicy& policy) = 0; 42 virtual void SetMemoryPolicy(const ManagedMemoryPolicy& policy) = 0;
44 // If set, |callback| will be called subsequent to each new tree activation, 43 // If set, |callback| will be called subsequent to each new tree activation,
45 // regardless of the compositor visibility or damage. |callback| must remain 44 // regardless of the compositor visibility or damage. |callback| must remain
46 // valid for the lifetime of the OutputSurfaceClient or until unregisted -- 45 // valid for the lifetime of the OutputSurfaceClient or until unregisted --
47 // use SetTreeActivationCallback(base::Closure()) to unregister it. 46 // use SetTreeActivationCallback(base::Closure()) to unregister it.
48 virtual void SetTreeActivationCallback(const base::Closure& callback) = 0; 47 virtual void SetTreeActivationCallback(const base::Closure& callback) = 0;
49 48
50 protected: 49 protected:
51 virtual ~OutputSurfaceClient() {} 50 virtual ~OutputSurfaceClient() {}
52 }; 51 };
53 52
54 } // namespace cc 53 } // namespace cc
55 54
56 #endif // CC_OUTPUT_OUTPUT_SURFACE_CLIENT_H_ 55 #endif // CC_OUTPUT_OUTPUT_SURFACE_CLIENT_H_
OLDNEW
« no previous file with comments | « cc/output/output_surface.cc ('k') | cc/output/output_surface_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698