Home | History | Annotate | Download | only in gpu

Lines Matching defs:tileSize

1205 inline int get_tile_count(int l, int t, int r, int b, int tileSize)  {
1206 int tilesX = (r / tileSize) - (l / tileSize) + 1;
1207 int tilesY = (b / tileSize) - (t / tileSize) + 1;
1253 int* tileSize) const {
1254 SkASSERT(NULL != tileSize);
1265 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1295 *tileSize = determine_tile_size(bitmap, srcRectPtr, maxTextureSize);
1358 int tileSize;
1359 if (!this->shouldTileBitmap(bitmap, *sampler, srcRectPtr, &tileSize)) {
1384 int nx = bitmap.width() / tileSize;
1385 int ny = bitmap.height() / tileSize;
1389 tileR.set(x * tileSize, y * tileSize,
1390 (x + 1) * tileSize, (y + 1) * tileSize);