Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrLayerAtlas.cpp77 int numPlotsX, int numPlotsY) { in GrLayerAtlas() argument
87 int plotHeight = textureHeight / numPlotsY; in GrLayerAtlas()
90 SkASSERT(plotHeight * numPlotsY == textureHeight); in GrLayerAtlas()
96 fPlotArray = new Plot[numPlotsX * numPlotsY]; in GrLayerAtlas()
99 for (int y = numPlotsY-1; y >= 0; --y) { in GrLayerAtlas()
DGrBatchAtlas.cpp140 GrBatchAtlas::GrBatchAtlas(GrTexture* texture, int numPlotsX, int numPlotsY) in GrBatchAtlas() argument
145 int plotHeight = texture->height() / numPlotsY; in GrBatchAtlas()
146 SkASSERT(numPlotsX * numPlotsY <= BulkUseTokenUpdater::kMaxPlots); in GrBatchAtlas()
148 SkASSERT(plotHeight * numPlotsY == texture->height()); in GrBatchAtlas()
150 SkDEBUGCODE(fNumPlots = numPlotsX * numPlotsY;) in GrBatchAtlas()
156 fPlotArray = new SkAutoTUnref<BatchPlot>[numPlotsX * numPlotsY]; in GrBatchAtlas()
159 for (int y = numPlotsY - 1, r = 0; y >= 0; --y, ++r) { in GrBatchAtlas()
DGrBatchAtlas.h22 int numPlotsY() const { return fHeight / fPlotWidth; } in numPlotsY() function
44 GrBatchAtlas(GrTexture*, int numPlotsX, int numPlotsY);
DGrResourceProvider.cpp162 int numPlotsX, int numPlotsY, in createAtlas() argument
178 GrBatchAtlas* atlas = new GrBatchAtlas(texture, numPlotsX, numPlotsY); in createAtlas()
DGrLayerAtlas.h102 int numPlotsX, int numPlotsY);
DGrResourceProvider.h139 GrBatchAtlas* createAtlas(GrPixelConfig, int width, int height, int numPlotsX, int numPlotsY,
/external/skia/src/gpu/text/
DGrBatchFontCache.cpp27 int numPlotsY = fAtlasConfigs[index].numPlotsY(); in initAtlas() local
31 numPlotsX, numPlotsY, in initAtlas()