OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/resources/tile.h" | 5 #include "cc/resources/tile.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "cc/base/math_util.h" | 9 #include "cc/base/math_util.h" |
10 #include "cc/debug/traced_value.h" | 10 #include "cc/debug/traced_value.h" |
11 #include "cc/resources/tile_manager.h" | 11 #include "cc/resources/tile_manager.h" |
12 #include "third_party/khronos/GLES2/gl2.h" | 12 #include "third_party/khronos/GLES2/gl2.h" |
13 | 13 |
14 namespace cc { | 14 namespace cc { |
15 | 15 |
16 Tile::Id Tile::s_next_id_ = 0; | 16 Tile::Id Tile::s_next_id_ = 0; |
17 | 17 |
18 Tile::Tile(TileManager* tile_manager, | 18 Tile::Tile(TileManager* tile_manager, |
19 PicturePileImpl* picture_pile, | 19 PicturePileImpl* picture_pile, |
20 const gfx::Size& tile_size, | 20 const gfx::Size& tile_size, |
21 const gfx::Rect& content_rect, | 21 const gfx::Rect& content_rect, |
22 const gfx::Rect& opaque_rect, | 22 const gfx::Rect& opaque_rect, |
23 float contents_scale, | 23 float contents_scale, |
24 int layer_id, | 24 int layer_id, |
25 int source_frame_number, | 25 int source_frame_number, |
26 int flags) | 26 int flags) |
27 : RefCountedManaged<Tile>(tile_manager), | 27 : RefCountedManaged<Tile>(tile_manager), |
28 tile_manager_(tile_manager), | |
29 tile_size_(tile_size), | 28 tile_size_(tile_size), |
30 content_rect_(content_rect), | 29 content_rect_(content_rect), |
31 contents_scale_(contents_scale), | 30 contents_scale_(contents_scale), |
32 opaque_rect_(opaque_rect), | 31 opaque_rect_(opaque_rect), |
33 layer_id_(layer_id), | 32 layer_id_(layer_id), |
34 source_frame_number_(source_frame_number), | 33 source_frame_number_(source_frame_number), |
35 flags_(flags), | 34 flags_(flags), |
| 35 tiling_i_index_(-1), |
| 36 tiling_j_index_(-1), |
| 37 required_for_activation_(false), |
36 id_(s_next_id_++) { | 38 id_(s_next_id_++) { |
37 set_picture_pile(picture_pile); | 39 set_picture_pile(picture_pile); |
38 for (int i = 0; i < NUM_TREES; i++) | 40 for (int i = 0; i < NUM_TREES; i++) |
39 is_occluded_[i] = false; | 41 is_occluded_[i] = false; |
40 } | 42 } |
41 | 43 |
42 Tile::~Tile() { | 44 Tile::~Tile() { |
43 TRACE_EVENT_OBJECT_DELETED_WITH_ID( | 45 TRACE_EVENT_OBJECT_DELETED_WITH_ID( |
44 TRACE_DISABLED_BY_DEFAULT("cc.debug"), | 46 TRACE_DISABLED_BY_DEFAULT("cc.debug"), |
45 "cc::Tile", this); | 47 "cc::Tile", this); |
46 } | 48 } |
47 | 49 |
48 void Tile::SetPriority(WhichTree tree, const TilePriority& priority) { | 50 void Tile::SetPriority(WhichTree tree, const TilePriority& priority) { |
49 if (priority == priority_[tree]) | |
50 return; | |
51 | |
52 priority_[tree] = priority; | 51 priority_[tree] = priority; |
53 tile_manager_->DidChangeTilePriority(this); | |
54 } | 52 } |
55 | 53 |
56 void Tile::MarkRequiredForActivation() { | 54 void Tile::set_required_for_activation(bool is_required) { |
57 if (priority_[PENDING_TREE].required_for_activation) | 55 required_for_activation_ = is_required; |
58 return; | |
59 | |
60 priority_[PENDING_TREE].required_for_activation = true; | |
61 tile_manager_->DidChangeTilePriority(this); | |
62 } | 56 } |
63 | 57 |
64 scoped_ptr<base::Value> Tile::AsValue() const { | 58 scoped_ptr<base::Value> Tile::AsValue() const { |
65 scoped_ptr<base::DictionaryValue> res(new base::DictionaryValue()); | 59 scoped_ptr<base::DictionaryValue> res(new base::DictionaryValue()); |
66 TracedValue::MakeDictIntoImplicitSnapshotWithCategory( | 60 TracedValue::MakeDictIntoImplicitSnapshotWithCategory( |
67 TRACE_DISABLED_BY_DEFAULT("cc.debug"), res.get(), "cc::Tile", this); | 61 TRACE_DISABLED_BY_DEFAULT("cc.debug"), res.get(), "cc::Tile", this); |
68 res->Set("picture_pile", | 62 res->Set("picture_pile", |
69 TracedValue::CreateIDRef(picture_pile_.get()).release()); | 63 TracedValue::CreateIDRef(picture_pile_.get()).release()); |
70 res->SetDouble("contents_scale", contents_scale_); | 64 res->SetDouble("contents_scale", contents_scale_); |
71 res->Set("content_rect", MathUtil::AsValue(content_rect_).release()); | 65 res->Set("content_rect", MathUtil::AsValue(content_rect_).release()); |
(...skipping 23 matching lines...) Expand all Loading... |
95 RasterMode Tile::DetermineRasterModeForResolution( | 89 RasterMode Tile::DetermineRasterModeForResolution( |
96 TileResolution resolution) const { | 90 TileResolution resolution) const { |
97 RasterMode current_mode = managed_state_.raster_mode; | 91 RasterMode current_mode = managed_state_.raster_mode; |
98 RasterMode raster_mode = resolution == LOW_RESOLUTION | 92 RasterMode raster_mode = resolution == LOW_RESOLUTION |
99 ? LOW_QUALITY_RASTER_MODE | 93 ? LOW_QUALITY_RASTER_MODE |
100 : HIGH_QUALITY_RASTER_MODE; | 94 : HIGH_QUALITY_RASTER_MODE; |
101 return std::min(raster_mode, current_mode); | 95 return std::min(raster_mode, current_mode); |
102 } | 96 } |
103 | 97 |
104 } // namespace cc | 98 } // namespace cc |
OLD | NEW |