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

  /external/chromium_org/third_party/skia/src/gpu/
SkGrPixelRef.cpp 96 SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (dst));
98 return pixelRef;
  /external/skia/src/gpu/
SkGrPixelRef.cpp 96 SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (dst));
98 return pixelRef;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
DeferredImageDecoder.cpp 70 return bitmap.pixelRef()
71 && bitmap.pixelRef()->getURI()
72 && !memcmp(bitmap.pixelRef()->getURI(), labelLazyDecoded, sizeof(labelLazyDecoded));
77 LazyDecodingPixelRef* pixelRef = static_cast<LazyDecodingPixelRef*>(bitmap.pixelRef());
88 resizedBitmap.setPixelRef(new LazyDecodingPixelRef(pixelRef->frameGenerator(), scaledSize, pixelRef->frameIndex(), scaledSubset))->unref();
264 bitmap.pixelRef()->setURI(labelLazyDecoded);
ImageDecodingStoreTest.cpp 410 MockDiscardablePixelRef* pixelRef = static_cast<MockDiscardablePixelRef*>(refImage->bitmap().pixelRef());
411 pixelRef->discard();
424 MockDiscardablePixelRef* pixelRef = static_cast<MockDiscardablePixelRef*>(cachedImage->bitmap().pixelRef());
425 pixelRef->discard();
  /external/skia/tests/
BitmapFactoryTest.cpp 109 SkPixelRef* pixelRef = bitmapFromFactory->pixelRef();
110 REPORTER_ASSERT(reporter, pixelRef != NULL);
117 SkLazyPixelRef* lazyRef = static_cast<SkLazyPixelRef*>(pixelRef);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
ImageBuffer.cpp 79 SkPixelRef* pixelRef = device->accessBitmap(false).pixelRef();
80 return pixelRef ? new SkCanvas(device) : 0;
108 SkPixelRef* pixelRef = device->accessBitmap(false).pixelRef();
109 if (!pixelRef) {
  /external/chromium_org/third_party/skia/include/core/
SkBitmap.h 93 /** Return true iff the bitmap has no pixelref. Note: this can return true even if the
170 underlying pixelref. This state can be set, but it cannot be
172 that share the same pixelref.
253 will automatically release any pixelref previously installed. Only call
285 /** Use the standard HeapAllocator to create the pixelref that manages the
287 If this is called multiple times, a new pixelref object will be created
295 @return true if the allocation succeeds. If not the pixelref field of
302 /** Use the specified Allocator to create the pixelref that manages the
304 If this is called multiple times, a new pixelref object will be created
310 @param allocator The Allocator to use to create a pixelref that ca
    [all...]
  /external/skia/include/core/
SkBitmap.h 93 /** Return true iff the bitmap has no pixelref. Note: this can return true even if the
170 underlying pixelref. This state can be set, but it cannot be
172 that share the same pixelref.
253 will automatically release any pixelref previously installed. Only call
285 /** Use the standard HeapAllocator to create the pixelref that manages the
287 If this is called multiple times, a new pixelref object will be created
295 @return true if the allocation succeeds. If not the pixelref field of
302 /** Use the specified Allocator to create the pixelref that manages the
304 If this is called multiple times, a new pixelref object will be created
310 @param allocator The Allocator to use to create a pixelref that ca
    [all...]
  /external/chromium_org/third_party/skia/src/core/
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
475 dst == NULL || (getPixels() == NULL && pixelRef() == NULL))
963 SkPixelRef* pixelRef = fPixelRef->deepCopy(this->config(), &subset);
964 if (pixelRef != NULL) {
969 dst.setPixelRef(pixelRef)->unref();
992 // share the pixelref with a custom offset
1059 if (dst->pixelRef() && this->config() == dstConfig)
    [all...]
  /external/skia/src/core/
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
475 dst == NULL || (getPixels() == NULL && pixelRef() == NULL))
963 SkPixelRef* pixelRef = fPixelRef->deepCopy(this->config(), &subset);
964 if (pixelRef != NULL) {
969 dst.setPixelRef(pixelRef)->unref();
992 // share the pixelref with a custom offset
1059 if (dst->pixelRef() && this->config() == dstConfig)
    [all...]

Completed in 417 milliseconds