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

  /external/skia/include/core/
SkPixelRef.h 60 void* pixels() const { return fPixels; }
227 void* fPixels;
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...]
  /external/skia/src/core/
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...]

Completed in 91 milliseconds