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

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

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « cc/output/gl_renderer.cc ('k') | cc/output/overlay_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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CC_OUTPUT_OVERLAY_RENDERER_H_
6 #define CC_OUTPUT_OVERLAY_RENDERER_H_
7
8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "cc/base/cc_export.h"
11 #include "cc/quads/render_pass.h"
12
13 namespace cc {
14
15 class CC_EXPORT OverlayRenderer {
16 public:
17 class Strategy {
18 public:
19 virtual ~Strategy() {}
20 virtual bool Attempt(RenderPassList* render_passes_in_draw_order) = 0;
21 };
22 virtual ~OverlayRenderer();
23 OverlayRenderer();
24
25 void Initialize();
26 void ProcessForOverlays(RenderPassList* render_passes_in_draw_order);
27
28 private:
29 typedef ScopedPtrVector<Strategy> StrategyList;
30 StrategyList strategies_;
31 DISALLOW_COPY_AND_ASSIGN(OverlayRenderer);
32 };
33
34 } // namespace cc
35
36 #endif // CC_OUTPUT_OVERLAY_RENDERER_H_
OLDNEW
« no previous file with comments | « cc/output/gl_renderer.cc ('k') | cc/output/overlay_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698