blob: a72ab01e655a0d8f390e57e2b2335049edb939fc (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// 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/layers/picture_image_layer_impl.h"
#include <algorithm>
#include "cc/debug/debug_colors.h"
#include "cc/trees/layer_tree_impl.h"
namespace cc {
PictureImageLayerImpl::PictureImageLayerImpl(LayerTreeImpl* tree_impl, int id)
: PictureLayerImpl(tree_impl, id) {
}
PictureImageLayerImpl::~PictureImageLayerImpl() {
}
const char* PictureImageLayerImpl::LayerTypeAsString() const {
return "cc::PictureImageLayerImpl";
}
scoped_ptr<LayerImpl> PictureImageLayerImpl::CreateLayerImpl(
LayerTreeImpl* tree_impl) {
return PictureImageLayerImpl::Create(tree_impl, id());
}
void PictureImageLayerImpl::GetDebugBorderProperties(
SkColor* color, float* width) const {
*color = DebugColors::ImageLayerBorderColor();
*width = DebugColors::ImageLayerBorderWidth(layer_tree_impl());
}
bool PictureImageLayerImpl::ShouldAdjustRasterScale() const {
return false;
}
void PictureImageLayerImpl::RecalculateRasterScales() {
// Don't scale images during rastering to ensure image quality, save memory
// and avoid frequent re-rastering on change of scale.
raster_page_scale_ = 1.f;
raster_device_scale_ = 1.f;
raster_source_scale_ = std::max(1.f, MinimumContentsScale());
raster_contents_scale_ = raster_source_scale_;
// We don't need low res tiles.
low_res_raster_contents_scale_ = raster_contents_scale_;
}
void PictureImageLayerImpl::UpdateIdealScales() {
ideal_contents_scale_ = 1.f;
ideal_page_scale_ = 1.f;
ideal_device_scale_ = 1.f;
ideal_source_scale_ = 1.f;
}
} // namespace cc
|