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

Unified Diff: cc/tiling_data.cc

Issue 11887027: cc: Add iterator and big border support to TilingData (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: cc/tiling_data.cc
diff --git a/cc/tiling_data.cc b/cc/tiling_data.cc
index 3906d2c97bcd944421b671ea746b278c747b6460..5de3636a46ce869333605a30c3ec97d642f525db 100644
--- a/cc/tiling_data.cc
+++ b/cc/tiling_data.cc
@@ -19,14 +19,24 @@ static int ComputeNumTiles(int max_texture_size, int total_size, int border_texe
return total_size > 0 ? num_tiles : 0;
}
-TilingData::TilingData(gfx::Size max_texture_size, gfx::Size total_size, bool hasBorderTexels)
+TilingData::TilingData(
+ gfx::Size max_texture_size,
+ gfx::Size total_size,
+ bool hasBorderTexels)
: max_texture_size_(max_texture_size),
total_size_(total_size),
border_texels_(hasBorderTexels ? 1 : 0) {
RecomputeNumTiles();
}
-TilingData::~TilingData() {
+TilingData::TilingData(
+ gfx::Size max_texture_size,
+ gfx::Size total_size,
+ int border_texels)
+ : max_texture_size_(max_texture_size),
+ total_size_(total_size),
+ border_texels_(border_texels) {
+ RecomputeNumTiles();
}
void TilingData::SetTotalSize(gfx::Size total_size) {
@@ -44,12 +54,18 @@ void TilingData::SetHasBorderTexels(bool has_border_texels) {
RecomputeNumTiles();
}
+void TilingData::SetBorderTexels(int border_texels) {
+ border_texels_ = border_texels;
+ RecomputeNumTiles();
+}
+
int TilingData::TileXIndexFromSrcCoord(int src_position) const {
if (num_tiles_x_ <= 1)
return 0;
- DCHECK(max_texture_size_.width() - 2 * border_texels_);
- int x = (src_position - border_texels_) / (max_texture_size_.width() - 2 * border_texels_);
+ DCHECK_GT(max_texture_size_.width() - 2 * border_texels_, 0);
+ int x = (src_position - border_texels_) /
+ (max_texture_size_.width() - 2 * border_texels_);
return std::min(std::max(x, 0), num_tiles_x_ - 1);
}
@@ -57,8 +73,29 @@ int TilingData::TileYIndexFromSrcCoord(int src_position) const {
if (num_tiles_y_ <= 1)
return 0;
- DCHECK(max_texture_size_.height() - 2 * border_texels_);
- int y = (src_position - border_texels_) / (max_texture_size_.height() - 2 * border_texels_);
+ DCHECK_GT(max_texture_size_.width() - 2 * border_texels_, 0);
danakj 2013/01/15 23:09:05 did you mean to change this to width?
enne (OOO) 2013/01/15 23:31:40 Done.
+ int y = (src_position - border_texels_) /
+ (max_texture_size_.height() - 2 * border_texels_);
+ return std::min(std::max(y, 0), num_tiles_y_ - 1);
+}
+
+int TilingData::BorderTileXIndexFromSrcCoord(int src_position) const {
+ if (num_tiles_x_ <= 1)
+ return 0;
+
+ DCHECK_GT(max_texture_size_.width() - 2 * border_texels_, 0);
+ int inner_tile_size = max_texture_size_.width() - 2 * border_texels_;
+ int x = (src_position - 2 * border_texels_) / inner_tile_size;
+ return std::min(std::max(x, 0), num_tiles_x_ - 1);
+}
+
+int TilingData::BorderTileYIndexFromSrcCoord(int src_position) const {
+ if (num_tiles_y_ <= 1)
+ return 0;
+
+ DCHECK_GT(max_texture_size_.width() - 2 * border_texels_, 0);
danakj 2013/01/15 23:09:05 should this be .height()?
enne (OOO) 2013/01/15 23:31:40 Done.
+ int inner_tile_size = max_texture_size_.height() - 2 * border_texels_;
+ int y = (src_position - 2 * border_texels_) / inner_tile_size;
return std::min(std::max(y, 0), num_tiles_y_ - 1);
}
@@ -87,13 +124,13 @@ gfx::Rect TilingData::TileBoundsWithBorder(int i, int j) const {
int y2 = bounds.bottom();
if (i > 0)
- x1--;
+ x1-= border_texels_;
if (i < (num_tiles_x_ - 1))
- x2++;
+ x2+= border_texels_;
if (j > 0)
- y1--;
+ y1-= border_texels_;
if (j < (num_tiles_y_ - 1))
- y2++;
+ y2+= border_texels_;
bounds = gfx::Rect(x1, y1, x2 - x1, y2 - y1);
}
@@ -169,4 +206,56 @@ void TilingData::RecomputeNumTiles() {
num_tiles_y_ = ComputeNumTiles(max_texture_size_.height(), total_size_.height(), border_texels_);
}
+TilingData::Iterator::Iterator(const TilingData* tiling_data, gfx::Rect rect)
+ : tiling_data_(tiling_data) {
+ rect_ = gfx::IntersectRects(rect, gfx::Rect(tiling_data_->total_size()));
danakj 2013/01/15 23:09:05 why isn't this set via constructor initialization?
enne (OOO) 2013/01/15 23:31:40 Done.
+ if (tiling_data_->num_tiles_x() > 0 && tiling_data_->num_tiles_y() > 0) {
danakj 2013/01/15 23:09:05 nit: invert this and done(); return; instead of ne
enne (OOO) 2013/01/15 23:31:40 Done().
+ index_x_ = tiling_data_->BorderTileXIndexFromSrcCoord(rect_.x());
+ index_y_ = tiling_data_->BorderTileYIndexFromSrcCoord(rect_.y());
+
+ // Index functions always return valid indices, so explicitly check
+ // for non-intersecting rects.
+ gfx::Rect new_rect = tiling_data_->TileBoundsWithBorder(index_x_, index_y_);
+ if (!new_rect.Intersects(rect_))
+ done();
+ } else {
+ done();
+ }
+}
+
+TilingData::Iterator& TilingData::Iterator::operator++() {
+ index_x_++;
danakj 2013/01/15 23:09:05 DCHECK(index_x_ >= 0 && index_y_ >= 0) and early o
enne (OOO) 2013/01/15 23:31:40 Actually, multiple calls to ++ on a "done" iterato
+
+ bool new_row = index_x_ >= tiling_data_->num_tiles_x();
+ if (!new_row) {
+ gfx::Rect new_rect = tiling_data_->TileBoundsWithBorder(index_x_, index_y_);
+ new_row = new_rect.x() >= rect_.right();
+ }
+
+ if (new_row) {
+ index_x_ = tiling_data_->BorderTileXIndexFromSrcCoord(rect_.x());
+ index_y_++;
+
+ if (index_y_ >= tiling_data_->num_tiles_y())
danakj 2013/01/15 23:09:05 nit: if one block gets {} they all do, in chromium
enne (OOO) 2013/01/15 23:31:40 What do you know, a part of Chromium style I like!
+ done();
+ else {
+ gfx::Rect new_rect =
+ tiling_data_->TileBoundsWithBorder(index_x_, index_y_);
+ if (new_rect.y() >= rect_.bottom())
+ done();
+ }
+ }
+
+ return *this;
+}
+
+TilingData::Iterator::operator bool() const {
+ return index_x_ != -1 && index_y_ != -1;
+}
+
+void TilingData::Iterator::done() {
+ index_x_ = -1;
+ index_y_ = -1;
+}
+
} // namespace cc
« cc/tiling_data.h ('K') | « cc/tiling_data.h ('k') | cc/tiling_data_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698