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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
GaneshUtils.cpp 61 SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (info, texture.get()));
62 if (!pixelRef)
65 bitmap.setPixelRef(pixelRef, 0)->unref();
  /external/chromium_org/third_party/skia/src/gpu/
SkGrPixelRef.cpp 103 SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (info, dst));
105 return pixelRef;
  /external/skia/src/gpu/
SkGrPixelRef.cpp 103 SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (info, dst));
105 return pixelRef;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageDecodingStoreTest.cpp 411 MockDiscardablePixelRef* pixelRef = static_cast<MockDiscardablePixelRef*>(refImage->bitmap().pixelRef());
412 pixelRef->discard();
425 MockDiscardablePixelRef* pixelRef = static_cast<MockDiscardablePixelRef*>(cachedImage->bitmap().pixelRef());
426 pixelRef->discard();
  /external/chromium_org/third_party/skia/include/core/
SkBitmap.h 88 /** Return true iff the bitmap has no pixelref. Note: this can return true even if the
173 underlying pixelref. This state can be set, but it cannot be
175 that share the same pixelref.
261 will automatically release any pixelref previously installed. Only call
293 /** Use the standard HeapAllocator to create the pixelref that manages the
295 If this is called multiple times, a new pixelref object will be created
303 @return true if the allocation succeeds. If not the pixelref field of
310 /** Use the specified Allocator to create the pixelref that manages the
312 If this is called multiple times, a new pixelref object will be created
318 @param allocator The Allocator to use to create a pixelref that ca
    [all...]
  /external/skia/include/core/
SkBitmap.h 88 /** Return true iff the bitmap has no pixelref. Note: this can return true even if the
173 underlying pixelref. This state can be set, but it cannot be
175 that share the same pixelref.
261 will automatically release any pixelref previously installed. Only call
293 /** Use the standard HeapAllocator to create the pixelref that manages the
295 If this is called multiple times, a new pixelref object will be created
303 @return true if the allocation succeeds. If not the pixelref field of
310 /** Use the specified Allocator to create the pixelref that manages the
312 If this is called multiple times, a new pixelref object will be created
318 @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
573 dst == NULL || (getPixels() == NULL && pixelRef() == NULL))
968 SkPixelRef* pixelRef = fPixelRef->deepCopy(this->config(), &subset);
969 if (pixelRef != NULL) {
974 dst.setPixelRef(pixelRef)->unref();
997 // share the pixelref with a custom offset
1057 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
573 dst == NULL || (getPixels() == NULL && pixelRef() == NULL))
968 SkPixelRef* pixelRef = fPixelRef->deepCopy(this->config(), &subset);
969 if (pixelRef != NULL) {
974 dst.setPixelRef(pixelRef)->unref();
997 // share the pixelref with a custom offset
1057 if (dst->pixelRef() && this->config() == dstConfig)
    [all...]

Completed in 79 milliseconds