Home
last modified time | relevance | path

Searched refs:numPlotsX (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
168 fPlotWidth = fProxy->width() / numPlotsX; in GrDrawOpAtlas()
170 SkASSERT(numPlotsX * numPlotsY <= BulkUseTokenUpdater::kMaxPlots); in GrDrawOpAtlas()
171 SkASSERT(fPlotWidth * numPlotsX == fProxy->width()); in GrDrawOpAtlas()
174 SkDEBUGCODE(fNumPlots = numPlotsX * numPlotsY;) in GrDrawOpAtlas()
177 fPlotArray.reset(new sk_sp<Plot>[ numPlotsX * numPlotsY ]); in GrDrawOpAtlas()
181 for (int x = numPlotsX - 1, c = 0; x >= 0; --x, ++c) { in GrDrawOpAtlas()
182 uint32_t index = r * numPlotsX + c; in GrDrawOpAtlas()
DGrDrawOpAtlas.h20 int numPlotsX() const { return fWidth / fPlotWidth; } in numPlotsX() function
75 int numPlotsX, int numPlotsY,
179 GrDrawOpAtlas(GrContext*, sk_sp<GrTextureProxy>, int numPlotsX, int numPlotsY);
/external/skia/src/gpu/text/
DGrAtlasGlyphCache.cpp25 int numPlotsX = fAtlasConfigs[index].numPlotsX(); in initAtlas() local
29 fContext, config, width, height, numPlotsX, numPlotsY, in initAtlas()