Searched refs:numPlotsX (Results 1 – 1 of 1) sorted by relevance
31 int numPlotsX = fTextureWidth / fPlotWidth; in validate() local38 SkASSERT(plotIndex == (numPlotsY - plotY - 1) * numPlotsX + (numPlotsX - plotX - 1)); in validate()237 int numPlotsX = width/plotWidth; in GrDrawOpAtlas() local239 SkASSERT(numPlotsX * numPlotsY <= GrDrawOpAtlas::kMaxPlots); in GrDrawOpAtlas()240 SkASSERT(fPlotWidth * numPlotsX == fTextureWidth); in GrDrawOpAtlas()243 fNumPlots = numPlotsX * numPlotsY; in GrDrawOpAtlas()617 int numPlotsX = fTextureWidth/fPlotWidth; in createPages() local635 fPages[i].fPlotArray = std::make_unique<sk_sp<Plot>[]>(numPlotsX * numPlotsY); in createPages()639 for (int x = numPlotsX - 1, c = 0; x >= 0; --x, ++c) { in createPages()640 uint32_t plotIndex = r * numPlotsX + c; in createPages()[all …]