Home | History | Annotate | Download | only in gpu

Lines Matching full:previous

32         DrawBatch* previous = static_cast<DrawBatch*>(&this->cmdBuffer()->back());
33 if (previous->fState == state && previous->fBatch->combineIfPossible(batch)) {
93 // The previous command was also DrawPaths. Try to collapse this call into the one
100 DrawPaths* previous = static_cast<DrawPaths*>(&this->cmdBuffer()->back());
101 if (pathRange == previous->pathRange() &&
102 indexType == previous->fIndexType &&
103 transformType == previous->fTransformType &&
104 stencilSettings == previous->fStencilSettings &&
107 previous->fState == state) {
110 if (&previous->fIndices[previous->fCount*indexBytes] == savedIndices &&
112 &previous->fTransforms[previous->fCount*xformSize] == savedTransforms)) {
113 // Fold this DrawPaths call into the one previous.
114 previous->fCount += count;