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

  /external/skia/src/image/
SkReadPixelsRec.h 18 : fPixels(pixels)
25 void* fPixels;
SkImage.cpp 46 return as_IB(this)->onReadPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY);
  /external/skia/src/core/
SkConfig8888.h 24 void* fPixels;
28 const void* fPixels;
30 // Guaranteed to work even if src.fPixels and dst.fPixels are the same
SkImageInfo.cpp 93 if (NULL == fPixels || fRowBytes < fInfo.minRowBytes()) {
115 fPixels = ((char*)fPixels - y * fRowBytes - x * fInfo.bytesPerPixel());
SkMipMap.h 24 void* fPixels;
SkConfig8888.cpp 95 if (fPixels == dst->fPixels) {
117 uint32_t* dstP = static_cast<uint32_t*>(dst->fPixels);
118 const uint32_t* srcP = static_cast<const uint32_t*>(fPixels);
196 dstPI.fPixels = dstPixels;
202 srcPI.fPixels = srcPixels;
SkPixelRef.cpp 147 fRec.fPixels = pixels;
192 if (fRec.fPixels) {
SkBitmap.cpp 61 fPixels = NULL;
81 SkTSwap(fPixels, other.fPixels);
166 fPixels = p;
170 fPixels = NULL;
388 fPixels = NULL;
    [all...]
SkMallocPixelRef.cpp 189 rec->fPixels = fStorage;
SkMipMap.cpp 270 levels[i].fPixels = addr;
SkResourceCache.cpp 131 rec->fPixels = fDM->data();
SkBitmapProcState.cpp 213 fScaledBitmap.installPixels(info, level.fPixels, level.fRowBytes);
    [all...]
SkCanvas.cpp 759 return device->readPixels(rec.fInfo, rec.fPixels, rec.fRowBytes, rec.fX, rec.fY);
    [all...]
  /external/skia/tests/
MipMapTest.cpp 42 REPORTER_ASSERT(reporter, level.fPixels);
47 if (prevLevel.fPixels) {
ImageDecodingTest.cpp 698 SingleAllocator(void* p, size_t s) : fPixels(p), fSize(s) { }
700 // If the pixels in fPixels are big enough, use them.
704 bm->setPixels(fPixels, ct);
705 fPixels = NULL;
711 bool ready() { return fPixels != NULL; }
713 void* fPixels;
  /external/skia/include/core/
SkBitmap.h 130 void* getPixels() const { return fPixels; }
727 mutable void* fPixels;
789 SkASSERT(fPixels);
792 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
796 SkASSERT(fPixels);
    [all...]
SkPixelRef.h 65 void* pixels() const { return fRec.fPixels; }
78 void* fPixels;
85 return NULL == fPixels && NULL == fColorTable && 0 == fRowBytes;
  /external/skia/src/lazy/
SkDiscardablePixelRef.cpp 45 rec->fPixels = fDiscardableMemory->data();
99 rec->fPixels = pixels;
SkCachingPixelRef.cpp 73 rec->fPixels = pixels;
  /development/ide/xcode/ports/
SkBitmap_Mac.cpp 107 if (fPixels == NULL || fWidth == 0 || fHeight == 0) {
  /external/skia/src/gpu/
SkGrPixelRef.cpp 40 rec->fPixels = fBitmap.getPixels();
GrContext.cpp     [all...]
SkGr.cpp 58 dstPI.fPixels = buffer;
64 srcPI.fPixels = ctable->readColors();
  /external/skia/gm/
downsamplebitmap.cpp 232 bm.installPixels(info, level.fPixels, level.fRowBytes, NULL,
  /frameworks/base/core/jni/android/graphics/
Bitmap.cpp 102 rec->fPixels = mStorage;
    [all...]

Completed in 1220 milliseconds