Home
last modified time | relevance | path

Searched refs:numPlotsX (Results 1 – 1 of 1) sorted by relevance

/third_party/skia/src/gpu/
DGrDrawOpAtlas.cpp31 int numPlotsX = fTextureWidth / fPlotWidth; in validate() local
38 SkASSERT(plotIndex == (numPlotsY - plotY - 1) * numPlotsX + (numPlotsX - plotX - 1)); in validate()
237 int numPlotsX = width/plotWidth; in GrDrawOpAtlas() local
239 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() local
635 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 …]