HomeSort by relevance Sort by last modified time
    Searched refs:getGenerationID (Results 1 - 25 of 30) sorted by null

1 2

  /external/skia/src/pdf/
SkPDFBitmap.h 30 return fBitmap.getGenerationID() == other.getGenerationID() &&
  /external/skia/tests/
PixelRefTest.cpp 30 REPORTER_ASSERT(r, 0 != pixelRef->getGenerationID());
37 REPORTER_ASSERT(r, 0 != pixelRef->getGenerationID());
43 REPORTER_ASSERT(r, 0 != pixelRef->getGenerationID());
SkResourceCacheTest.cpp 111 uint32_t cachedID = cachedBitmap.getGenerationID();
224 const uint32_t genID = src[i].getGenerationID();
261 REPORTER_ASSERT(reporter, SkBitmapCache::Find(cachedBitmap.getGenerationID(), rect, &bm, cache));
264 REPORTER_ASSERT(reporter, SkBitmapCache::Find(cachedBitmap.getGenerationID(), rect, &bm, cache));
274 REPORTER_ASSERT(reporter, !SkBitmapCache::Find(cachedBitmap.getGenerationID(), rect, &bm, cache));
283 REPORTER_ASSERT(reporter, SkBitmapCache::Find(cachedBitmap.getGenerationID(), rect, &bm, cache));
BitmapCopyTest.cpp 245 REPORTER_ASSERT(reporter, copy.getGenerationID() != subset.getGenerationID());
311 REPORTER_ASSERT(reporter, srcPremul.getGenerationID() == dst.getGenerationID());
313 REPORTER_ASSERT(reporter, srcPremul.getGenerationID() != dst.getGenerationID());
PathTest.cpp 238 REPORTER_ASSERT(reporter, a.getGenerationID() == b.getGenerationID());
241 const uint32_t z = a.getGenerationID();
242 REPORTER_ASSERT(reporter, z != b.getGenerationID());
245 REPORTER_ASSERT(reporter, a.getGenerationID() == b.getGenerationID());
248 const uint32_t y = a.getGenerationID();
252 const uint32_t x = b.getGenerationID();
256 REPORTER_ASSERT(reporter, b.getGenerationID() == y && a.getGenerationID() == x)
    [all...]
  /external/skia/include/core/
SkDrawable.h 44 uint32_t getGenerationID();
55 * the next time getGenerationID() is called. Typically this is called by the object itself,
SkPixelRef.h 124 uint32_t getGenerationID() const;
141 * getGenerationID().
SkBitmap.h 456 uint32_t getGenerationID() const;
460 getGenerationID().
    [all...]
SkPath.h     [all...]
  /external/skia/src/core/
SkBitmapCache.cpp 101 BitmapKey key(src.getGenerationID(), invScaleX, invScaleY, get_bounds_from_bitmap(src));
113 BitmapRec* rec = SkNEW_ARGS(BitmapRec, (src.getGenerationID(), invScaleX, invScaleY,
137 BitmapRec* rec = SkNEW_ARGS(BitmapRec, (pr->getGenerationID(), 1, 1, subset, result));
164 : fKey(src.getGenerationID(), get_bounds_from_bitmap(src))
198 MipMapKey key(src.getGenerationID(), get_bounds_from_bitmap(src));
SkDrawable.cpp 48 uint32_t SkDrawable::getGenerationID() {
SkPixelRef.cpp 130 // This is subtle. We must call that.getGenerationID() to make sure its genID isn't 0.
131 uint32_t genID = that.getGenerationID();
134 // (These & ~1u are actually redundant. that.getGenerationID() just did it for us.)
210 uint32_t SkPixelRef::getGenerationID() const {
244 SkNotifyBitmapGenIDIsStale(this->getGenerationID());
SkBitmapHeap.h 213 : fGenerationId(bm.getGenerationID())
SkBitmapHeap.cpp 168 if (replacement.getGenerationID() == iter->fGenerationId) {
SkWriteBuffer.cpp 182 fWriter.write32(bitmap.getGenerationID());
SkImageFilter.cpp 177 uint32_t srcGenID = fUsesSrcInput ? src.getGenerationID() : 0;
  /external/skia/src/gpu/
GrPath.cpp 20 builder[2] = path.getGenerationID();
SkGrPixelRef.cpp 167 if(!SkBitmapCache::Find(this->getGenerationID(), bounds, dst)) {
SkGr.cpp 127 uint32_t genID = bitmap.getGenerationID();
319 cachedData.reset(SkYUVPlanesCache::FindAndRef(pixelRef->getGenerationID(), &yuvInfo));
359 SkYUVPlanesCache::Add(pixelRef->getGenerationID(), cachedData, &yuvInfo);
GrAADistanceFieldPathRenderer.cpp 242 PathData::Key key = { args.fPath.getGenerationID(), desiredDimension };
426 pathData->fKey.fGenID = path.getGenerationID();
  /external/skia/src/lazy/
SkCachingPixelRef.cpp 50 this->getGenerationID(), info.bounds(), &fLockedBitmap)) {
  /frameworks/base/libs/hwui/
PathCache.cpp 253 path->getGenerationID());
344 mGarbage.push(path->getGenerationID());
374 entry.shape.path.mGenerationID = path->getGenerationID();
409 entry.shape.path.mGenerationID = path->getGenerationID();
421 texture = new PathTexture(Caches::getInstance(), path->getGenerationID());
TextureCache.cpp 185 } else if (!texture->isInUse && bitmap->getGenerationID() != texture->generation) {
279 texture->generation = bitmap->getGenerationID();
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.cpp 100 int key = data.getGenerationID();
  /external/skia/src/utils/debugger/
SkObjectParser.cpp 55 mBitmap->appendS32(bitmap.getGenerationID());

Completed in 545 milliseconds

1 2