Home | History | Annotate | Download | only in gpu

Lines Matching full:atlas

207 GrPlot* GrAtlasMgr::addToAtlas(GrAtlas* atlas,
210 // iterate through entire plot list for this atlas, see if we can find a hole
212 for (int i = atlas->fPlots.count()-1; i >= 0; --i) {
213 GrPlot* plot = atlas->fPlots[i];
244 // new plot for atlas, put at end of array
245 *(atlas->fPlots.append()) = plot;
255 bool GrAtlasMgr::removePlot(GrAtlas* atlas, const GrPlot* plot) {
256 // iterate through plot list for this atlas
257 int count = atlas->fPlots.count();
259 if (plot == atlas->fPlots[i]) {
260 atlas->fPlots.remove(i);