Lines Matching refs:newSaveCount
439 SaveLayerOp* op, int newSaveCount) {
441 this, op, op->getFlags(), newSaveCount);
444 mSaveStack.push(newSaveCount);
451 void DeferredDisplayList::addSave(OpenGLRenderer& renderer, SaveOp* op, int newSaveCount) {
453 DEFER_LOGD("%p adding saveOp %p, flags %x, new count %d", this, op, saveFlags, newSaveCount);
457 DEFER_LOGD(" adding save barrier with new save count %d", newSaveCount);
459 mSaveStack.push(newSaveCount);
474 int newSaveCount) {
475 DEFER_LOGD("%p addRestoreToCount %d", this, newSaveCount);
477 if (recordingComplexClip() && newSaveCount <= mComplexClipStackStart) {
482 if (mSaveStack.isEmpty() || newSaveCount > mSaveStack.top()) {
486 while (!mSaveStack.isEmpty() && mSaveStack.top() >= newSaveCount) mSaveStack.pop();
626 int newSaveCount) {
628 this, newSaveCount, mBatches.size());
634 mBatches.add(new RestoreToCountBatch(op, state, newSaveCount));