Home | History | Annotate | Download | only in gpu

Lines Matching refs:BatchPlot

130             BatchPlot* plot = fPlotArray[updater.fPlotsToUpdate[i]];
143 // The BatchPlots keep track of subimage placement via their GrRectanizer. A BatchPlot
145 // Once a BatchPlot is "full" (i.e. there is no room for the new subimage according to the
148 class BatchPlot : public SkRefCnt {
149 SK_DECLARE_INTERNAL_LLIST_INTERFACE(BatchPlot);
185 BatchPlot(int index, uint64_t genID, int offX, int offY, int width, int height,
188 ~BatchPlot() override;
192 BatchPlot* clone() const {
193 return new BatchPlot(fIndex, fGenID+1, fX, fY, fWidth, fHeight, fConfig);
225 typedef SkTInternalLList<BatchPlot> GrBatchPlotList;
236 inline void updatePlot(GrDrawBatch::Target*, AtlasID*, BatchPlot*);
238 inline void makeMRU(BatchPlot* plot) {
263 SkAutoTUnref<BatchPlot>* fPlotArray;