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

  /external/skia/include/core/
SkBitmap.h 99 bool isNull() const { return NULL == fPixelRef; }
329 SkPixelRef* pixelRef() const { return fPixelRef; }
645 mutable SkPixelRef* fPixelRef;
649 // or a cache of the returned value from fPixelRef->lockPixels()
  /external/skia/legacy/include/core/
SkBitmap.h 94 bool isNull() const { return NULL == fPixels && NULL == fPixelRef; }
300 SkPixelRef* pixelRef() const { return fPixelRef; }
602 mutable SkPixelRef* fPixelRef;
606 // or a cache of the returned value from fPixelRef->lockPixels()
    [all...]
  /external/skia/src/core/
SkCanvas.cpp 79 AutoCheckLockCountBalance(const SkBitmap& bm) : fPixelRef(bm.pixelRef()) {
80 fLockCount = fPixelRef ? fPixelRef->getLockCount() : 0;
83 const int count = fPixelRef ? fPixelRef->getLockCount() : 0;
88 const SkPixelRef* fPixelRef;
    [all...]

Completed in 46 milliseconds