Remove the treewalk in ResetDrawProperties()
[chromium-blink-merge.git] / cc / layers / io_surface_layer_impl_unittest.cc
blob1c9256c25517a51e9b8ae69f7b763de2bfc4563e
1 // Copyright 2014 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.
5 #include "cc/layers/io_surface_layer_impl.h"
7 #include "cc/test/layer_test_common.h"
8 #include "testing/gtest/include/gtest/gtest.h"
10 namespace cc {
11 namespace {
13 TEST(IOSurfaceLayerImplTest, Occlusion) {
14 gfx::Size layer_size(1000, 1000);
15 gfx::Size viewport_size(1000, 1000);
17 LayerTestCommon::LayerImplTest impl;
19 IOSurfaceLayerImpl* io_surface_layer_impl =
20 impl.AddChildToRoot<IOSurfaceLayerImpl>();
21 io_surface_layer_impl->SetBounds(layer_size);
22 io_surface_layer_impl->SetContentBounds(layer_size);
23 io_surface_layer_impl->SetDrawsContent(true);
25 io_surface_layer_impl->SetIOSurfaceProperties(1, gfx::Size(1, 1));
26 io_surface_layer_impl->WillDraw(DRAW_MODE_HARDWARE, impl.resource_provider());
27 io_surface_layer_impl->DidDraw(impl.resource_provider());
29 impl.CalcDrawProps(viewport_size);
32 SCOPED_TRACE("No occlusion");
33 gfx::Rect occluded;
34 impl.AppendQuadsWithOcclusion(io_surface_layer_impl, occluded);
36 LayerTestCommon::VerifyQuadsExactlyCoverRect(impl.quad_list(),
37 gfx::Rect(layer_size));
38 EXPECT_EQ(1u, impl.quad_list().size());
42 SCOPED_TRACE("Full occlusion");
43 gfx::Rect occluded(io_surface_layer_impl->visible_content_rect());
44 impl.AppendQuadsWithOcclusion(io_surface_layer_impl, occluded);
46 LayerTestCommon::VerifyQuadsExactlyCoverRect(impl.quad_list(), gfx::Rect());
47 EXPECT_EQ(impl.quad_list().size(), 0u);
51 SCOPED_TRACE("Partial occlusion");
52 gfx::Rect occluded(200, 0, 800, 1000);
53 impl.AppendQuadsWithOcclusion(io_surface_layer_impl, occluded);
55 size_t partially_occluded_count = 0;
56 LayerTestCommon::VerifyQuadsAreOccluded(
57 impl.quad_list(), occluded, &partially_occluded_count);
58 // The layer outputs one quad, which is partially occluded.
59 EXPECT_EQ(1u, impl.quad_list().size());
60 EXPECT_EQ(1u, partially_occluded_count);
64 } // namespace
65 } // namespace cc