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

  /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/skia/src/core/
SkPixelRef.cpp 43 int32_t genID;
45 genID = sk_atomic_inc(&gPixelRefGenerationID) + 1;
46 } while (0 == genID);
47 return genID;
98 // is safe since the same genID will never refer to two different sets of
101 // trigger assignment of a new genID in playback.
SkPathRef.h 16 // * Write genID.
340 // We've done the work to determine that these are equal. If either has a zero genID, copy
341 // the other's. If both are 0 then genID() will compute the next ID.
343 fGenerationID = ref.genID();
345 ref.fGenerationID = this->genID();
403 // We could call genID() here to force a real ID (instead of 0). However, if we're making
409 /** Makes additional room but does not change the counts or change the genID */
553 int32_t genID() const {
592 kEmptyGenID = 1, // GenID reserved for path ref with zero points and zero verbs.
  /external/skia/src/gpu/
SkGr.cpp 62 uint32_t genID = bitmap.getGenerationID();
68 memcpy(key.fData8, &genID, 4);
GrClipMaskManager.cpp 154 int32_t genID = clipDataIn->fClipStack->getTopmostGenID();
160 result = this->createSoftwareClipMask(genID,
165 result = this->createAlphaClipMask(genID,
576 int32_t genID = elements.tail()->getGenID();
578 if (stencilBuffer->mustRenderClip(genID, clipSpaceIBounds, clipSpaceToStencilOffset)) {
580 stencilBuffer->setLastClip(genID, clipSpaceIBounds, clipSpaceToStencilOffset);
    [all...]
  /external/skia/legacy/src/core/
SkPixelRef.cpp 40 int32_t genID;
42 genID = sk_atomic_inc(&gPixelRefGenerationID) + 1;
43 } while (0 == genID);
44 return genID;

Completed in 294 milliseconds