Searched refs:numPlotsY (Results 1 – 7 of 7) sorted by relevance
/external/skia/src/gpu/ |
D | GrLayerAtlas.cpp | 77 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()
|
D | GrBatchAtlas.cpp | 140 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()
|
D | GrBatchAtlas.h | 22 int numPlotsY() const { return fHeight / fPlotWidth; } in numPlotsY() function 44 GrBatchAtlas(GrTexture*, int numPlotsX, int numPlotsY);
|
D | GrResourceProvider.cpp | 162 int numPlotsX, int numPlotsY, in createAtlas() argument 178 GrBatchAtlas* atlas = new GrBatchAtlas(texture, numPlotsX, numPlotsY); in createAtlas()
|
D | GrLayerAtlas.h | 102 int numPlotsX, int numPlotsY);
|
D | GrResourceProvider.h | 139 GrBatchAtlas* createAtlas(GrPixelConfig, int width, int height, int numPlotsX, int numPlotsY,
|
/external/skia/src/gpu/text/ |
D | GrBatchFontCache.cpp | 27 int numPlotsY = fAtlasConfigs[index].numPlotsY(); in initAtlas() local 31 numPlotsX, numPlotsY, in initAtlas()
|