Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrDrawOpAtlas.cpp19 int numPlotsX, int numPlotsY, in Make() argument
48 new GrDrawOpAtlas(ctx, std::move(proxy), numPlotsX, numPlotsY)); in Make()
164 int numPlotsX, int numPlotsY) in GrDrawOpAtlas() argument
169 fPlotHeight = fProxy->height() / numPlotsY; in GrDrawOpAtlas()
170 SkASSERT(numPlotsX * numPlotsY <= BulkUseTokenUpdater::kMaxPlots); in GrDrawOpAtlas()
172 SkASSERT(fPlotHeight * numPlotsY == fProxy->height()); in GrDrawOpAtlas()
174 SkDEBUGCODE(fNumPlots = numPlotsX * numPlotsY;) in GrDrawOpAtlas()
177 fPlotArray.reset(new sk_sp<Plot>[ numPlotsX * numPlotsY ]); in GrDrawOpAtlas()
180 for (int y = numPlotsY - 1, r = 0; y >= 0; --y, ++r) { in GrDrawOpAtlas()
DGrDrawOpAtlas.h21 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/
DGrAtlasGlyphCache.cpp26 int numPlotsY = fAtlasConfigs[index].numPlotsY(); in initAtlas() local
29 fContext, config, width, height, numPlotsX, numPlotsY, in initAtlas()