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

1 2

  /external/skia/legacy/include/core/
SkPixelRef.h 30 #define SK_DEFINE_PIXEL_REF_REGISTRAR(pixelRef) \
31 static SkPixelRef::Registrar g##pixelRef##Reg(#pixelRef, \
32 pixelRef::Create);
38 #define SK_DEFINE_PIXEL_REF_REGISTRAR(pixelRef) \
39 void pixelRef::Init() { \
40 SkPixelRef::Registrar(#pixelRef, Create); \
48 SkBitmap. A pixelref is installed into a bitmap, and then the bitmap can
91 pixelref. Each time the pixels are changed (and notifyPixelsChanged is
102 /** Returns true if this pixelref is marked as immutable, meaning that th
    [all...]
SkDevice.h 291 SkPixelRef* getPixelRef() const { return fBitmap.pixelRef(); }
292 // just for subclasses, to assign a custom pixelref
  /external/chromium/chrome/browser/ui/views/tabs/
tab_renderer_data.cc 22 favicon.pixelRef() &&
23 favicon.pixelRef() == data.favicon.pixelRef() &&
  /external/skia/tests/
BitmapFactoryTest.cpp 63 REPORTER_ASSERT(reporter, bitmapFromFactory.pixelRef() != NULL);
72 REPORTER_ASSERT(reporter, boundedBitmap.pixelRef() == NULL);
GpuBitmapCopyTest.cpp 74 REPORTER_ASSERT(reporter, src.pixelRef() != NULL && dst.pixelRef() != NULL);
80 bool readBack = src.pixelRef()->readPixels(&srcReadBack, subset);
84 bool readBack = dst.pixelRef()->readPixels(&dstReadBack, subset);
  /external/skia/legacy/src/core/
SkBitmapProcShader.cpp 175 SkASSERT(state.fBitmap->pixelRef() == NULL ||
176 state.fBitmap->pixelRef()->isLocked());
219 SkASSERT(state.fBitmap->pixelRef() == NULL ||
220 state.fBitmap->pixelRef()->isLocked());
305 // add the pixelref
306 SkPixelRef* pr = fRawBitmap.pixelRef();
  /external/skia/src/image/
SkImage_Codec.cpp 42 if (!fBitmap.pixelRef()) {
SkImagePriv.cpp 107 image = SkNewImageFromPixelRef(info, bm.pixelRef(), bm.rowBytes());
SkImage_Raster.cpp 62 SkPixelRef* getPixelRef() const { return fBitmap.pixelRef(); }
SkSurface_Raster.cpp 129 if (SkBitmapImageGetPixelRef(image) == fBitmap.pixelRef()) {
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageSourceAndroid.cpp 268 SkPixelRef* ref = bm->pixelRef();
331 SkPixelRef* pixelRef = bitmap.pixelRef();
332 if (pixelRef)
333 pixelRef->setURI(m_decoder.m_url);
ImageAndroid.cpp 187 if (bitmap.getPixels() == NULL && bitmap.pixelRef() == NULL) {
189 SkDebugf("----- skip bitmapimage: [%d %d] pixels %p pixelref %p\n",
191 bitmap.getPixels(), bitmap.pixelRef());
241 if (origBitmap.getPixels() == NULL && origBitmap.pixelRef() == NULL)
  /external/skia/src/gpu/
SkGrPixelRef.cpp 96 SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (dst));
98 return pixelRef;
  /external/skia/src/core/
SkBitmapProcShader.cpp 172 SkASSERT(state.fBitmap->pixelRef() == NULL ||
173 state.fBitmap->pixelRef()->isLocked());
224 SkASSERT(state.fBitmap->pixelRef() == NULL ||
225 state.fBitmap->pixelRef()->isLocked());
SkBitmap.cpp 111 1. no pixelref, in which case we just copy/ref the pixels/ctable
112 2. unlocked pixelref, pixels/ctable should be null
113 3. locked pixelref, we should lock the ref again ourselves
118 } else { // we have a pixelref, so pixels/ctable reflect it
476 dst == NULL || (getPixels() == NULL && pixelRef() == NULL))
924 SkPixelRef* pixelRef = fPixelRef->deepCopy(this->config(), &subset);
925 if (pixelRef != NULL) {
930 dst.setPixelRef(pixelRef)->unref();
981 // share the pixelref with a custom offset
1047 if (dst->pixelRef() && this->config() == dstConfig)
    [all...]
SkOrderedWriteBuffer.cpp 176 SkPixelRef* ref = bitmap.pixelRef();
  /external/skia/tools/
CopyTilesRenderer.cpp 70 dst.pixelRef()->readPixels(&copy, &subset);
  /frameworks/base/libs/hwui/
ResourceCache.cpp 63 SkSafeRef(bitmapResource->pixelRef());
97 SkSafeRef(bitmapResource->pixelRef());
126 SkSafeUnref(bitmapResource->pixelRef());
163 SkSafeUnref(bitmapResource->pixelRef());
  /external/skia/src/utils/
SkPictureUtils.cpp 55 fPRSet->add(bm.pixelRef());
67 fPRSet->add(bm.pixelRef());
  /external/skia/legacy/src/images/
SkImageRef.cpp 68 if (bitmap && bitmap->pixelRef() == this) {
SkImageDecoder.cpp 234 bm->pixelRef()->setURI(file);
  /external/skia/src/images/
SkImageRef.cpp 65 if (bitmap && bitmap->pixelRef() == this) {
SkImageDecoder.cpp 238 bm->pixelRef()->setURI(file);
  /frameworks/base/core/jni/android/graphics/
Graphics.cpp 352 SkASSERT(bitmap->pixelRef());
535 ((AndroidPixelRef*) fNativeBitmap->pixelRef())->setLocalJNIRef(fBuffer);
541 ((AndroidPixelRef*) fNativeBitmap->pixelRef())->setLocalJNIRef(NULL);
  /external/skia/include/core/
SkDevice.h 361 SkPixelRef* getPixelRef() const { return fBitmap.pixelRef(); }
362 // just for subclasses, to assign a custom pixelref

Completed in 427 milliseconds

1 2