HomeSort by relevance Sort by last modified time
    Searched refs:numPlotsX (Results 1 - 3 of 3) sorted by null

  /external/skia/src/gpu/
GrDrawOpAtlas.cpp 18 int numPlotsX, int numPlotsY,
47 new GrDrawOpAtlas(ctx, std::move(proxy), numPlotsX, numPlotsY));
163 int numPlotsX, int numPlotsY)
167 fPlotWidth = fProxy->width() / numPlotsX;
169 SkASSERT(numPlotsX * numPlotsY <= BulkUseTokenUpdater::kMaxPlots);
170 SkASSERT(fPlotWidth * numPlotsX == fProxy->width());
173 SkDEBUGCODE(fNumPlots = numPlotsX * numPlotsY;)
179 fPlotArray.reset(new sk_sp<Plot>[ numPlotsX * numPlotsY ]);
183 for (int x = numPlotsX - 1, c = 0; x >= 0; --x, ++c) {
184 uint32_t index = r * numPlotsX + c
    [all...]
GrDrawOpAtlas.h 20 int numPlotsX() const { return fWidth / fPlotWidth; }
63 * @param numPlotsX The number of plots the atlas should be broken up into in the X
75 int numPlotsX, int numPlotsY,
179 GrDrawOpAtlas(GrContext*, sk_sp<GrTextureProxy>, int numPlotsX, int numPlotsY);
  /external/skia/src/gpu/text/
GrAtlasGlyphCache.cpp 26 int numPlotsX = fAtlasConfigs[index].numPlotsX();
30 fContext, config, width, height, numPlotsX, numPlotsY,

Completed in 122 milliseconds