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

Unified Diff: cc/output/overlay_processor.h

Issue 197223003: Start of hardware overlay support in CC with Ubercompositor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/output/overlay_candidate_validator.h ('k') | cc/output/overlay_processor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/overlay_processor.h
diff --git a/cc/output/overlay_processor.h b/cc/output/overlay_processor.h
new file mode 100644
index 0000000000000000000000000000000000000000..41a1f4d915ee85758c1c3a20e4f2812bab8a2b76
--- /dev/null
+++ b/cc/output/overlay_processor.h
@@ -0,0 +1,48 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CC_OUTPUT_OVERLAY_PROCESSOR_H_
+#define CC_OUTPUT_OVERLAY_PROCESSOR_H_
+
+#include "base/basictypes.h"
+#include "base/memory/scoped_ptr.h"
+#include "cc/base/cc_export.h"
+#include "cc/quads/render_pass.h"
+
+namespace cc {
+class OutputSurface;
+class ResourceProvider;
+
+class CC_EXPORT OverlayProcessor {
+ public:
+ class CC_EXPORT Strategy {
+ public:
+ virtual ~Strategy() {}
+ // Returns false if the strategy cannot be made to work with the
+ // current set of render passes. Returns true if the strategy was successful
+ // and adds any additional passes necessary to represent overlays to
+ // |render_passes_in_draw_order|.
+ virtual bool Attempt(RenderPassList* render_passes_in_draw_order) = 0;
+ };
+ typedef ScopedPtrVector<Strategy> StrategyList;
+
+ OverlayProcessor(OutputSurface* surface, ResourceProvider* resource_provider);
+ virtual ~OverlayProcessor();
+ // Virtual to allow testing different strategies.
+ virtual void Initialize();
+
+ void ProcessForOverlays(RenderPassList* render_passes_in_draw_order);
+
+ protected:
+ StrategyList strategies_;
+ OutputSurface* surface_;
+ ResourceProvider* resource_provider_;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(OverlayProcessor);
+};
+
+} // namespace cc
+
+#endif // CC_OUTPUT_OVERLAY_PROCESSOR_H_
« no previous file with comments | « cc/output/overlay_candidate_validator.h ('k') | cc/output/overlay_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698