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

  /external/skia/src/core/
SkCanvasPriv.h 20 int fSaveCount;
SkClipStack.h 26 // stores the stack depth (fSaveCount) and clips (fDeque) separately.
28 // (i.e., the fSaveCount in force when it was added). Restores are thus
29 // implemented by removing clips from fDeque that have an fSaveCount larger
94 int getSaveCount() const { return fSaveCount; }
222 int fSaveCount; // save count of stack when this element was added.
266 fSaveCount = saveCount;
334 int getSaveCount() const { return fSaveCount; }
341 : fCS(cs), fSaveCount(cs->getSaveCount())
348 SkASSERT(fCS->getSaveCount() >= fSaveCount); // no underflow
349 while (fCS->getSaveCount() > fSaveCount) {
    [all...]
SkClipStack.cpp 38 fSaveCount = that.fSaveCount;
55 fSaveCount != element.fSaveCount) {
168 return fSaveCount == saveCount &&
480 , fSaveCount(0) {
485 , fSaveCount(0) {
503 fSaveCount = b.fSaveCount;
518 if (fSaveCount != b.fSaveCount |
    [all...]
SkCanvas.cpp 441 fSaveCount = canvas->getSaveCount();
497 SkASSERT(fCanvas->getSaveCount() == fSaveCount);
523 int fSaveCount;
635 fSaveCount = 1;
889 SkASSERT(count == fSaveCount);
891 return fSaveCount;
895 fSaveCount += 1;
910 SkASSERT(fSaveCount > 1);
911 fSaveCount -= 1;
917 SkASSERT(fSaveCount > 1)
    [all...]
  /external/skia/include/core/
SkCanvas.h     [all...]
  /external/skia/tests/
PictureTest.cpp 334 , fSaveCount(0)
345 ++fSaveCount;
354 unsigned int getSaveCount() const { return fSaveCount; }
359 unsigned int fSaveCount;
    [all...]

Completed in 215 milliseconds