1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/layers/texture_layer_impl.h"
#include <stddef.h>
#include "base/functional/bind.h"
#include "cc/test/fake_layer_tree_frame_sink.h"
#include "cc/test/layer_tree_impl_test_base.h"
#include "cc/trees/layer_tree_frame_sink.h"
#include "components/viz/common/gpu/raster_context_provider.h"
#include "components/viz/common/quads/draw_quad.h"
#include "components/viz/common/quads/texture_draw_quad.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace cc {
namespace {
void IgnoreCallback(const gpu::SyncToken& sync_token, bool lost) {}
TEST(TextureLayerImplTest, VisibleOpaqueRegion) {
const gfx::Size layer_bounds(100, 100);
const gfx::Rect layer_rect(layer_bounds);
const Region layer_region(layer_rect);
LayerTreeImplTestBase impl;
auto resource = viz::TransferableResource::Make(
gpu::ClientSharedImage::CreateForTesting(),
viz::TransferableResource::ResourceSource::kTest, gpu::SyncToken());
TextureLayerImpl* layer = impl.AddLayerInActiveTree<TextureLayerImpl>();
layer->SetBounds(layer_bounds);
layer->draw_properties().visible_layer_rect = layer_rect;
layer->SetBlendBackgroundColor(true);
layer->SetTransferableResource(resource, base::BindOnce(&IgnoreCallback));
CopyProperties(impl.root_layer(), layer);
// Verify initial conditions.
EXPECT_FALSE(layer->contents_opaque());
EXPECT_EQ(SkColors::kTransparent, layer->background_color());
EXPECT_EQ(Region().ToString(), layer->VisibleOpaqueRegion().ToString());
// Opaque background.
layer->SetBackgroundColor(SkColors::kWhite);
EXPECT_EQ(layer_region.ToString(), layer->VisibleOpaqueRegion().ToString());
// Transparent background.
layer->SetBackgroundColor({1.0f, 1.0f, 1.0f, 0.5f});
EXPECT_EQ(Region().ToString(), layer->VisibleOpaqueRegion().ToString());
}
TEST(TextureLayerImplTest, Occlusion) {
gfx::Size layer_size(1000, 1000);
gfx::Size viewport_size(1000, 1000);
LayerTreeImplTestBase impl;
auto resource = viz::TransferableResource::Make(
gpu::ClientSharedImage::CreateForTesting(),
viz::TransferableResource::ResourceSource::kTest, gpu::SyncToken());
TextureLayerImpl* texture_layer_impl =
impl.AddLayerInActiveTree<TextureLayerImpl>();
texture_layer_impl->SetBounds(layer_size);
texture_layer_impl->SetDrawsContent(true);
texture_layer_impl->SetTransferableResource(resource,
base::BindOnce(&IgnoreCallback));
CopyProperties(impl.root_layer(), texture_layer_impl);
impl.CalcDrawProps(viewport_size);
{
SCOPED_TRACE("No occlusion");
gfx::Rect occluded;
impl.AppendQuadsWithOcclusion(texture_layer_impl, occluded);
VerifyQuadsExactlyCoverRect(impl.quad_list(), gfx::Rect(layer_size));
EXPECT_EQ(1u, impl.quad_list().size());
}
{
SCOPED_TRACE("Full occlusion");
gfx::Rect occluded(texture_layer_impl->visible_layer_rect());
impl.AppendQuadsWithOcclusion(texture_layer_impl, occluded);
VerifyQuadsExactlyCoverRect(impl.quad_list(), gfx::Rect());
EXPECT_EQ(impl.quad_list().size(), 0u);
}
{
SCOPED_TRACE("Partial occlusion");
gfx::Rect occluded(200, 0, 800, 1000);
impl.AppendQuadsWithOcclusion(texture_layer_impl, occluded);
size_t partially_occluded_count = 0;
VerifyQuadsAreOccluded(impl.quad_list(), occluded,
&partially_occluded_count);
// The layer outputs one quad, which is partially occluded.
EXPECT_EQ(1u, impl.quad_list().size());
EXPECT_EQ(1u, partially_occluded_count);
}
}
} // namespace
} // namespace cc
|