Searched refs:getGenerationID (Results 1 - 25 of 27) sorted by relevance

12

/external/skia/src/pdf/
H A DSkPDFBitmap.h30 return fBitmap.getGenerationID() == other.getGenerationID() &&
H A DSkPDFShader.cpp1159 fPixelGeneration = fImage.getGenerationID();
/external/skia/tests/
H A DPixelRefTest.cpp30 REPORTER_ASSERT(r, 0 != pixelRef->getGenerationID());
37 REPORTER_ASSERT(r, 0 != pixelRef->getGenerationID());
43 REPORTER_ASSERT(r, 0 != pixelRef->getGenerationID());
H A DSkResourceCacheTest.cpp111 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));
H A DBitmapCopyTest.cpp245 REPORTER_ASSERT(reporter, copy.getGenerationID() != subset.getGenerationID());
311 REPORTER_ASSERT(reporter, srcPremul.getGenerationID() == dst.getGenerationID());
313 REPORTER_ASSERT(reporter, srcPremul.getGenerationID() != dst.getGenerationID());
H A DPathTest.cpp238 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()
[all...]
/external/skia/include/core/
H A DSkDrawable.h44 uint32_t getGenerationID();
55 * the next time getGenerationID() is called. Typically this is called by the object itself,
H A DSkPixelRef.h124 uint32_t getGenerationID() const;
141 * getGenerationID().
H A DSkBitmap.h456 uint32_t getGenerationID() const;
460 getGenerationID().
H A DSkPath.h952 uint32_t getGenerationID() const;
/external/skia/src/core/
H A DSkBitmapCache.cpp101 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));
H A DSkDrawable.cpp48 uint32_t SkDrawable::getGenerationID() { function in class:SkDrawable
H A DSkPixelRef.cpp130 // 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 { function in class:SkPixelRef
244 SkNotifyBitmapGenIDIsStale(this->getGenerationID());
H A DSkBitmapHeap.h213 : fGenerationId(bm.getGenerationID())
H A DSkBitmapHeap.cpp168 if (replacement.getGenerationID() == iter->fGenerationId) {
H A DSkWriteBuffer.cpp182 fWriter.write32(bitmap.getGenerationID());
H A DSkImageFilter.cpp177 uint32_t srcGenID = fUsesSrcInput ? src.getGenerationID() : 0;
H A DSkBitmap.cpp392 uint32_t SkBitmap::getGenerationID() const { function in class:SkBitmap
393 return (fPixelRef) ? fPixelRef->getGenerationID() : 0;
/external/skia/src/gpu/
H A DGrPath.cpp20 builder[2] = path.getGenerationID();
H A DSkGrPixelRef.cpp167 if(!SkBitmapCache::Find(this->getGenerationID(), bounds, dst)) {
H A DSkGr.cpp127 uint32_t genID = bitmap.getGenerationID();
319 cachedData.reset(SkYUVPlanesCache::FindAndRef(pixelRef->getGenerationID(), &yuvInfo));
359 SkYUVPlanesCache::Add(pixelRef->getGenerationID(), cachedData, &yuvInfo);
H A DGrAADistanceFieldPathRenderer.cpp242 PathData::Key key = { args.fPath.getGenerationID(), desiredDimension };
426 pathData->fKey.fGenID = path.getGenerationID();
/external/skia/src/lazy/
H A DSkCachingPixelRef.cpp50 this->getGenerationID(), info.bounds(), &fLockedBitmap)) {
/external/skia/src/gpu/effects/
H A DGrTextureStripAtlas.cpp100 int key = data.getGenerationID();
/external/skia/src/utils/debugger/
H A DSkObjectParser.cpp55 mBitmap->appendS32(bitmap.getGenerationID());

Completed in 288 milliseconds

12