summaryrefslogtreecommitdiffstats
path: root/cc/test/fake_layer_tree_host.cc
blob: c6d92abf6eeb44c061c76ba485442713ecafd131 (plain)
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
// Copyright 2013 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.

#include "cc/test/fake_layer_tree_host.h"

namespace cc {

scoped_ptr<FakeLayerTreeHost> FakeLayerTreeHost::Create() {
  static FakeLayerTreeHostClient client(FakeLayerTreeHostClient::DIRECT_3D);
  static LayerTreeSettings settings;
  return make_scoped_ptr(new FakeLayerTreeHost(&client, settings));
}

scoped_ptr<FakeLayerTreeHost> FakeLayerTreeHost::Create(
    const LayerTreeSettings& settings) {
  static FakeLayerTreeHostClient client(FakeLayerTreeHostClient::DIRECT_3D);
  return make_scoped_ptr(new FakeLayerTreeHost(&client, settings));
}

void FakeLayerTreeHost::SetNeedsCommit() { needs_commit_ = true; }

LayerImpl* FakeLayerTreeHost::CommitAndCreateLayerImplTree() {
  scoped_ptr<LayerImpl> old_root_layer_impl = active_tree()->DetachLayerTree();

  scoped_ptr<LayerImpl> layer_impl = TreeSynchronizer::SynchronizeTrees(
      root_layer(), old_root_layer_impl.Pass(), active_tree());
  TreeSynchronizer::PushProperties(root_layer(), layer_impl.get());

  active_tree()->SetRootLayer(layer_impl.Pass());
  return active_tree()->root_layer();
}

}  // namespace cc