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

  /external/skia/src/gpu/
SkGrPixelRef.cpp 96 SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (dst));
98 return 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);
  /external/skia/include/core/
SkBitmap.h 96 /** 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.
256 will automatically release any pixelref previously installed. Only call
289 /** Use the standard HeapAllocator to create the pixelref that manages the
291 If this is called multiple times, a new pixelref object will be created
299 @return true if the allocation succeeds. If not the pixelref field of
306 /** Use the specified Allocator to create the pixelref that manages the
308 If this is called multiple times, a new pixelref object will be created
314 @param allocator The Allocator to use to create a pixelref that ca
    [all...]
  /external/skia/legacy/include/core/
SkBitmap.h 91 /** Return true iff the bitmap has no pixels nor a pixelref. Note: this can
168 underlying pixelref. This state can be set, but it cannot be
170 that share the same pixelref.
227 will automatically release any pixelref previously installed. Only call
260 /** Use the standard HeapAllocator to create the pixelref that manages the
262 If this is called multiple times, a new pixelref object will be created
270 @return true if the allocation succeeds. If not the pixelref field of
277 /** Use the specified Allocator to create the pixelref that manages the
279 If this is called multiple times, a new pixelref object will be created
285 @param allocator The Allocator to use to create a pixelref that ca
    [all...]
  /external/skia/legacy/src/core/
SkBitmap.cpp 109 1. no pixelref, in which case we just copy/ref the pixels/ctable
110 2. unlocked pixelref, pixels/ctable should be null
111 3. locked pixelref, we should lock the ref again ourselves
116 } else { // we have a pixelref, so pixels/ctable reflect it
469 dst == NULL || (getPixels() == NULL && pixelRef() == NULL))
827 // share the pixelref with a custom offset
961 // If we have a PixelRef, and it supports deep copy, use it.
964 SkPixelRef* pixelRef = fPixelRef->deepCopy(dstConfig);
965 if (pixelRef) {
967 dst->setPixelRef(pixelRef)->unref()
    [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
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...]

Completed in 195 milliseconds