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

Unified Diff: cc/test/test_occlusion_tracker.h

Issue 1531403002: Revert "Delete CC." (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/test/test_now_source.cc ('k') | cc/test/test_shared_bitmap_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/test_occlusion_tracker.h
diff --git a/cc/test/test_occlusion_tracker.h b/cc/test/test_occlusion_tracker.h
new file mode 100644
index 0000000000000000000000000000000000000000..ca8a664fbd7960020a40949baffb3876d00e0e19
--- /dev/null
+++ b/cc/test/test_occlusion_tracker.h
@@ -0,0 +1,74 @@
+// 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_TEST_TEST_OCCLUSION_TRACKER_H_
+#define CC_TEST_TEST_OCCLUSION_TRACKER_H_
+
+#include "cc/layers/render_surface.h"
+#include "cc/layers/render_surface_impl.h"
+#include "cc/trees/occlusion_tracker.h"
+
+namespace cc {
+
+// A subclass to expose the total current occlusion.
+template <typename LayerType>
+class TestOcclusionTracker : public OcclusionTracker<LayerType> {
+ public:
+ explicit TestOcclusionTracker(const gfx::Rect& screen_scissor_rect)
+ : OcclusionTracker<LayerType>(screen_scissor_rect) {}
+
+ SimpleEnclosedRegion occlusion_from_inside_target() const {
+ return OcclusionTracker<LayerType>::stack_.back()
+ .occlusion_from_inside_target;
+ }
+ SimpleEnclosedRegion occlusion_from_outside_target() const {
+ return OcclusionTracker<LayerType>::stack_.back()
+ .occlusion_from_outside_target;
+ }
+
+ SimpleEnclosedRegion occlusion_on_contributing_surface_from_inside_target()
+ const {
+ size_t stack_size = OcclusionTracker<LayerType>::stack_.size();
+ if (stack_size < 2)
+ return SimpleEnclosedRegion();
+ return OcclusionTracker<LayerType>::stack_[stack_size - 2]
+ .occlusion_from_inside_target;
+ }
+ SimpleEnclosedRegion occlusion_on_contributing_surface_from_outside_target()
+ const {
+ size_t stack_size = OcclusionTracker<LayerType>::stack_.size();
+ if (stack_size < 2)
+ return SimpleEnclosedRegion();
+ return OcclusionTracker<LayerType>::stack_[stack_size - 2]
+ .occlusion_from_outside_target;
+ }
+
+ void set_occlusion_from_outside_target(const SimpleEnclosedRegion& region) {
+ OcclusionTracker<LayerType>::stack_.back().occlusion_from_outside_target =
+ region;
+ }
+ void set_occlusion_from_inside_target(const SimpleEnclosedRegion& region) {
+ OcclusionTracker<LayerType>::stack_.back().occlusion_from_inside_target =
+ region;
+ }
+
+ void set_occlusion_on_contributing_surface_from_outside_target(
+ const SimpleEnclosedRegion& region) {
+ size_t stack_size = OcclusionTracker<LayerType>::stack_.size();
+ DCHECK_GE(stack_size, 2u);
+ OcclusionTracker<LayerType>::stack_[stack_size - 2]
+ .occlusion_from_outside_target = region;
+ }
+ void set_occlusion_on_contributing_surface_from_inside_target(
+ const SimpleEnclosedRegion& region) {
+ size_t stack_size = OcclusionTracker<LayerType>::stack_.size();
+ DCHECK_GE(stack_size, 2u);
+ OcclusionTracker<LayerType>::stack_[stack_size - 2]
+ .occlusion_from_inside_target = region;
+ }
+};
+
+} // namespace cc
+
+#endif // CC_TEST_TEST_OCCLUSION_TRACKER_H_
« no previous file with comments | « cc/test/test_now_source.cc ('k') | cc/test/test_shared_bitmap_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698