Searched refs:startBlockX (Results 1 – 1 of 1) sorted by relevance
/external/skia/src/utils/ |
D | SkTextureCompressor_Blitter.h | 181 const int startBlockX = (x / BlockDim) * BlockDim; in blitRect() local 188 if (startBlockY == endBlockY && startBlockX == endBlockX) { in blitRect() 192 const int xoff = x - startBlockX; in blitRect() 202 uint8_t* dst = this->getBlock(startBlockX, startBlockY); in blitRect() 209 this->updateBlockRow(x, y, width, height, startBlockY, startBlockX, endBlockX); in blitRect() 213 } else if (startBlockX == endBlockX) { in blitRect() 215 this->updateBlockCol(x, y, width, height, startBlockX, startBlockY, endBlockY); in blitRect() 224 const int innerStartBlockX = startBlockX + BlockDim; in blitRect() 230 startBlockX, endBlockX); in blitRect() 241 startBlockX, innerStartBlockX); in blitRect() [all …]
|