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

Unified Diff: cc/tile.cc

Issue 11466032: cc: Fix impl-side painting rasterization at >1 contents scales (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/tile.h ('k') | cc/tile_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/tile.cc
diff --git a/cc/tile.cc b/cc/tile.cc
index 9ebaa51793a30509a6d7b5fdad6d4e4a0e16e343..7cb4bec83352281234a5d0c247a323e8aede0c10 100644
--- a/cc/tile.cc
+++ b/cc/tile.cc
@@ -13,13 +13,13 @@ Tile::Tile(TileManager* tile_manager,
PicturePileImpl* picture_pile,
gfx::Size tile_size,
GLenum format,
- gfx::Rect rect_inside_picture,
+ gfx::Rect content_rect,
float contents_scale)
: tile_manager_(tile_manager),
picture_pile_(picture_pile),
tile_size_(tile_size),
format_(format),
- rect_inside_picture_(rect_inside_picture),
+ content_rect_(content_rect),
contents_scale_(contents_scale) {
tile_manager_->RegisterTile(this);
}
« no previous file with comments | « cc/tile.h ('k') | cc/tile_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698