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

cc / layers / mirror_layer.cc [blame]

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <utility>

#include "cc/layers/mirror_layer.h"

#include "cc/layers/mirror_layer_impl.h"

namespace cc {

std::unique_ptr<LayerImpl> MirrorLayer::CreateLayerImpl(
    LayerTreeImpl* tree_impl) const {
  return MirrorLayerImpl::Create(tree_impl, id());
}

void MirrorLayer::PushDirtyPropertiesTo(
    LayerImpl* layer,
    uint8_t dirty_flag,
    const CommitState& commit_state,
    const ThreadUnsafeCommitState& unsafe_state) {
  Layer::PushDirtyPropertiesTo(layer, dirty_flag, commit_state, unsafe_state);

  if (dirty_flag & kChangedGeneralProperty) {
    auto* mirror_layer = static_cast<MirrorLayerImpl*>(layer);
    mirror_layer->SetMirroredLayerId(mirrored_layer_->id());
  }
}

void MirrorLayer::SetLayerTreeHost(LayerTreeHost* host) {
#if DCHECK_IS_ON()
  if (host && host != layer_tree_host()) {
    for (auto* p = parent(); p; p = p->parent())
      DCHECK_NE(p, mirrored_layer_.get());
  }
#endif

  Layer::SetLayerTreeHost(host);
}

scoped_refptr<MirrorLayer> MirrorLayer::Create(
    scoped_refptr<Layer> mirrored_layer) {
  return base::WrapRefCounted(new MirrorLayer(std::move(mirrored_layer)));
}

MirrorLayer::MirrorLayer(scoped_refptr<Layer> mirrored_layer)
    : mirrored_layer_(std::move(mirrored_layer)) {
  DCHECK(mirrored_layer_);
  mirrored_layer_->IncrementMirrorCount();
}

MirrorLayer::~MirrorLayer() {
  mirrored_layer_->DecrementMirrorCount();
}

}  // namespace cc