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

  /external/skia/src/core/
SkDrawable.cpp 17 int32_t genID;
19 genID = sk_atomic_inc(&gCanvasDrawableGenerationID) + 1;
20 } while (0 == genID);
21 return genID;
SkPixelRef.cpp 78 // This is subtle. We must call that.getGenerationID() to make sure its genID isn't 0.
79 uint32_t genID = that.getGenerationID();
83 this->fTaggedGenID.store(genID & ~1u);
84 that. fTaggedGenID.store(genID & ~1u);
252 // we need to be called *before* the genID gets changed or zerod
254 // We don't invalidate ourselves if we think another SkPixelRef is sharing our genID.
289 void SkPixelRef::setImmutableWithID(uint32_t genID) {
291 * We are forcing the genID to match an external value. The caller must ensure that this
297 fTaggedGenID.store(genID);
SkPath.cpp 330 uint32_t genID = fPathRef->genID();
333 genID |= static_cast<uint32_t>(fFillType) << kPathRefGenIDBitCnt;
335 return genID;
    [all...]
  /external/skia/tests/
YUVCacheTest.cpp 43 const uint32_t genID = 12345678;
45 SkCachedData* data = SkYUVPlanesCache::FindAndRef(genID, &yuvInfo, &cache);
52 SkYUVPlanesCache::Add(genID, data, &yuvInfo, &cache);
59 data = SkYUVPlanesCache::FindAndRef(genID, &yuvInfoRead, &cache);
SkResourceCacheTest.cpp 167 const uint32_t genID = src[i].getGenerationID();
169 bool found = SkBitmapCache::Find(genID, subset, &result, cache);
178 found = SkBitmapCache::Find(genID, subset, &result, cache);
  /external/skia/src/effects/
SkColorCubeFilter.cpp 33 int32_t genID;
35 genID = sk_atomic_inc(&gColorCubeUniqueID) + 1;
36 } while (0 == genID);
37 return genID;
  /external/skia/src/gpu/
GrBatchAtlas.h 64 return fPlotArray[index]->genID() == GetGenerationFromID(id);
152 // index() is a unique id for the plot relative to the owning GrAtlas. genID() is a
154 // evicted from the cache (i.e., there is continuity in genID() across atlas spills).
156 uint64_t genID() const { return fGenID; }
185 BatchPlot(int index, uint64_t genID, int offX, int offY, int width, int height,
GrClipMaskManager.cpp 331 int32_t genID = 0;
384 &genID,
445 result.reset(this->createSoftwareClipMask(genID,
451 result.reset(this->createAlphaClipMask(genID,
475 genID,
    [all...]
  /external/skia/src/utils/
SkLua.cpp 639 int32_t genID;
647 &genID,
    [all...]

Completed in 580 milliseconds