HomeSort by relevance Sort by last modified time
    Searched defs:genID (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/skia/src/utils/
SkPictureUtils.cpp 24 uint32_t genID = pr->getGenerationID();
25 if (fGenID.find(genID) < 0) {
27 *fGenID.append() = genID;
28 // SkDebugf("--- adding [%d] %x %d\n", fArray->count() - 1, pr, genID);
30 // SkDebugf("--- already have %x %d\n", pr, genID);
  /external/skia/src/utils/
SkPictureUtils.cpp 24 uint32_t genID = pr->getGenerationID();
25 if (fGenID.find(genID) < 0) {
27 *fGenID.append() = genID;
28 // SkDebugf("--- adding [%d] %x %d\n", fArray->count() - 1, pr, genID);
30 // SkDebugf("--- already have %x %d\n", pr, genID);
  /external/chromium_org/third_party/skia/src/core/
SkPathRef.cpp 224 // We've done the work to determine that these are equal. If either has a zero genID, copy
225 // the other's. If both are 0 then genID() will compute the next ID.
227 fGenerationID = ref.genID();
229 ref.fGenerationID = this->genID();
278 // We could call genID() here to force a real ID (instead of 0). However, if we're making
427 uint32_t SkPathRef::genID() const {
SkPixelRef.cpp 66 int32_t genID;
68 genID = sk_atomic_inc(&gPixelRefGenerationID) + 1;
69 } while (0 == genID);
70 return genID;
145 // This is subtle. We must call that.getGenerationID() to make sure its genID isn't 0.
167 // is safe since the same genID will never refer to two different sets of
170 // trigger assignment of a new genID in playback.
249 // We don't invalidate ourselves if we think another SkPixelRef is sharing our genID.
SkPath.cpp 293 uint32_t genID = fPathRef->genID();
296 genID |= static_cast<uint32_t>(fFillType) << kPathRefGenIDBitCnt;
298 return genID;
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
SkGr.cpp 67 uint32_t genID = bitmap.getGenerationID();
73 memcpy(key.fData8, &genID, 4);
94 // When the SkPixelRef genID changes, invalidate a corresponding GrResource described by key.
GrClipMaskManager.cpp 116 int32_t genID;
136 &genID,
166 result = this->createSoftwareClipMask(genID,
171 result = this->createAlphaClipMask(genID,
211 this->createStencilClipMask(genID,
    [all...]
  /external/skia/src/core/
SkPathRef.cpp 224 // We've done the work to determine that these are equal. If either has a zero genID, copy
225 // the other's. If both are 0 then genID() will compute the next ID.
227 fGenerationID = ref.genID();
229 ref.fGenerationID = this->genID();
278 // We could call genID() here to force a real ID (instead of 0). However, if we're making
427 uint32_t SkPathRef::genID() const {
SkPixelRef.cpp 66 int32_t genID;
68 genID = sk_atomic_inc(&gPixelRefGenerationID) + 1;
69 } while (0 == genID);
70 return genID;
145 // This is subtle. We must call that.getGenerationID() to make sure its genID isn't 0.
167 // is safe since the same genID will never refer to two different sets of
170 // trigger assignment of a new genID in playback.
249 // We don't invalidate ourselves if we think another SkPixelRef is sharing our genID.
SkPath.cpp 293 uint32_t genID = fPathRef->genID();
296 genID |= static_cast<uint32_t>(fFillType) << kPathRefGenIDBitCnt;
298 return genID;
    [all...]
  /external/skia/src/gpu/
SkGr.cpp 67 uint32_t genID = bitmap.getGenerationID();
73 memcpy(key.fData8, &genID, 4);
94 // When the SkPixelRef genID changes, invalidate a corresponding GrResource described by key.
GrClipMaskManager.cpp 116 int32_t genID;
136 &genID,
166 result = this->createSoftwareClipMask(genID,
171 result = this->createAlphaClipMask(genID,
211 this->createStencilClipMask(genID,
    [all...]

Completed in 1022 milliseconds