Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: cc/resources/tile.cc

Issue 12865017: Makes tile-creation lazy (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« cc/resources/tile.h ('K') | « cc/resources/tile.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "base/stringprintf.h" 7 #include "base/stringprintf.h"
8 #include "cc/resources/tile_manager.h" 8 #include "cc/resources/tile_manager.h"
9 #include "third_party/khronos/GLES2/gl2.h" 9 #include "third_party/khronos/GLES2/gl2.h"
10 10
11 namespace cc { 11 namespace cc {
12 12
13 Tile::Tile(TileManager* tile_manager, 13 Tile::Tile(TileManager* tile_manager,
14 PicturePileImpl* picture_pile, 14 PicturePileImpl* picture_pile,
15 gfx::Size tile_size, 15 gfx::Size tile_size,
16 GLenum format, 16 GLenum format,
17 gfx::Rect content_rect, 17 gfx::Rect content_rect,
18 gfx::Rect paint_rect,
18 gfx::Rect opaque_rect, 19 gfx::Rect opaque_rect,
19 float contents_scale, 20 float contents_scale,
20 int layer_id) 21 int layer_id)
21 : tile_manager_(tile_manager), 22 : tile_manager_(tile_manager),
22 tile_size_(tile_size), 23 tile_size_(tile_size),
23 format_(format), 24 format_(format),
24 content_rect_(content_rect), 25 content_rect_(content_rect),
26 paint_rect_(paint_rect),
25 contents_scale_(contents_scale), 27 contents_scale_(contents_scale),
26 opaque_rect_(opaque_rect), 28 opaque_rect_(opaque_rect),
27 layer_id_(layer_id) { 29 layer_id_(layer_id) {
28 set_picture_pile(picture_pile); 30 set_picture_pile(picture_pile);
29 tile_manager_->RegisterTile(this); 31 tile_manager_->RegisterTile(this);
30 } 32 }
31 33
32 Tile::~Tile() { 34 Tile::~Tile() {
33 tile_manager_->UnregisterTile(this); 35 tile_manager_->UnregisterTile(this);
34 } 36 }
(...skipping 12 matching lines...) Expand all
47 49
48 void Tile::SetPriority(WhichTree tree, const TilePriority& priority) { 50 void Tile::SetPriority(WhichTree tree, const TilePriority& priority) {
49 if (priority_[tree] == priority) 51 if (priority_[tree] == priority)
50 return; 52 return;
51 53
52 tile_manager_->WillModifyTilePriority(this, tree, priority); 54 tile_manager_->WillModifyTilePriority(this, tree, priority);
53 priority_[tree] = priority; 55 priority_[tree] = priority;
54 } 56 }
55 57
56 } // namespace cc 58 } // namespace cc
OLDNEW
« cc/resources/tile.h ('K') | « cc/resources/tile.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698