Searched refs:numPlotsY (Results 1 – 3 of 3) sorted by relevance
/external/skia/src/gpu/ |
D | GrDrawOpAtlas.cpp | 18 int numPlotsX, int numPlotsY, in Make() argument 47 new GrDrawOpAtlas(ctx, std::move(proxy), numPlotsX, numPlotsY)); in Make() 163 int numPlotsX, int numPlotsY) in GrDrawOpAtlas() argument 168 fPlotHeight = fProxy->height() / numPlotsY; in GrDrawOpAtlas() 169 SkASSERT(numPlotsX * numPlotsY <= BulkUseTokenUpdater::kMaxPlots); in GrDrawOpAtlas() 171 SkASSERT(fPlotHeight * numPlotsY == fProxy->height()); in GrDrawOpAtlas() 173 SkDEBUGCODE(fNumPlots = numPlotsX * numPlotsY;) in GrDrawOpAtlas() 179 fPlotArray.reset(new sk_sp<Plot>[ numPlotsX * numPlotsY ]); in GrDrawOpAtlas() 182 for (int y = numPlotsY - 1, r = 0; y >= 0; --y, ++r) { in GrDrawOpAtlas()
|
D | GrDrawOpAtlas.h | 21 int numPlotsY() const { return fHeight / fPlotWidth; } in numPlotsY() function 75 int numPlotsX, int numPlotsY, 179 GrDrawOpAtlas(GrContext*, sk_sp<GrTextureProxy>, int numPlotsX, int numPlotsY);
|
/external/skia/src/gpu/text/ |
D | GrAtlasGlyphCache.cpp | 27 int numPlotsY = fAtlasConfigs[index].numPlotsY(); in initAtlas() local 30 fContext, config, width, height, numPlotsX, numPlotsY, in initAtlas()
|