HomeSort by relevance Sort by last modified time
    Searched refs:fPixels (Results 1 - 5 of 5) sorted by null

  /external/skia/include/core/
SkBitmap.h 94 bool isNull() const { return NULL == fPixels && NULL == fPixelRef; }
133 void* getPixels() const { return fPixels; }
597 mutable void* fPixels;
800 SkASSERT(fPixels);
803 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
    [all...]
SkPixelRef.h 60 void* pixels() const { return fPixels; }
227 void* fPixels;
  /external/skia/src/core/
SkPixelRef.cpp 61 fPixels = NULL;
71 fPixels = NULL;
82 fPixels = pixels;
99 fPixels = this->onLockPixels(&fColorTable);
113 fPixels = NULL;
SkBitmap.cpp 30 void* fPixels;
114 // leave fPixels as it is
118 fPixels = NULL;
139 SkTSwap(fPixels, other.fPixels);
293 fPixels = p;
297 fPixels = NULL;
350 return fPixels != NULL;
356 fPixels = p;
389 fPixels = NULL
    [all...]
  /development/ide/xcode/ports/
SkBitmap_Mac.cpp 107 if (fPixels == NULL || fWidth == 0 || fHeight == 0) {

Completed in 694 milliseconds