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)->unref();
  /external/chromium_org/third_party/skia/src/gpu/
SkGrPixelRef.cpp 100 SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (info, dst));
102 return pixelRef;
  /external/skia/src/gpu/
SkGrPixelRef.cpp 100 SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (info, dst));
102 return pixelRef;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageDecodingStoreTest.cpp 415 MockDiscardablePixelRef* pixelRef = static_cast<MockDiscardablePixelRef*>(refImage->bitmap().pixelRef());
416 pixelRef->discard();
429 MockDiscardablePixelRef* pixelRef = static_cast<MockDiscardablePixelRef*>(cachedImage->bitmap().pixelRef());
430 pixelRef->discard();
  /external/chromium_org/third_party/skia/include/core/
SkBitmap.h 139 /** Return true iff the bitmap has no pixelref. Note: this can return true even if the
202 underlying pixelref. This state can be set, but it cannot be
204 that share the same pixelref.
293 * Allocate a pixelref to match the specified image info. If the Factory
294 * is non-null, call it to allcoate the pixelref. If the ImageInfo requires
301 * Allocate a pixelref to match the specified image info, using the default
319 * Install a pixelref that wraps the specified pixels and rowBytes, and
339 * of the created bitmap (and its pixelRef).
348 * of the created bitmap (and its pixelRef).
353 will automatically release any pixelref previously installed. Only cal
    [all...]
  /external/skia/include/core/
SkBitmap.h 139 /** Return true iff the bitmap has no pixelref. Note: this can return true even if the
202 underlying pixelref. This state can be set, but it cannot be
204 that share the same pixelref.
293 * Allocate a pixelref to match the specified image info. If the Factory
294 * is non-null, call it to allcoate the pixelref. If the ImageInfo requires
301 * Allocate a pixelref to match the specified image info, using the default
319 * Install a pixelref that wraps the specified pixels and rowBytes, and
339 * of the created bitmap (and its pixelRef).
348 * of the created bitmap (and its pixelRef).
353 will automatically release any pixelref previously installed. Only cal
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmap.cpp 295 // ignore dx,dy if there is no pixelref
501 dst == NULL || (getPixels() == NULL && pixelRef() == NULL)) {
833 SkPixelRef* pixelRef = fPixelRef->deepCopy(this->colorType(), &subset);
834 if (pixelRef != NULL) {
839 dst.setPixelRef(pixelRef)->unref();
860 // share the pixelref with a custom offset
980 if (dst->pixelRef() && dst->pixelRef()->info() == fPixelRef->info()) {
981 dst->pixelRef()->cloneGenID(*fPixelRef);
1023 // pixelRef must be non NULL or tmpDst.readyToDraw() would hav
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 295 // ignore dx,dy if there is no pixelref
501 dst == NULL || (getPixels() == NULL && pixelRef() == NULL)) {
833 SkPixelRef* pixelRef = fPixelRef->deepCopy(this->colorType(), &subset);
834 if (pixelRef != NULL) {
839 dst.setPixelRef(pixelRef)->unref();
860 // share the pixelref with a custom offset
927 if (dst->pixelRef() && dst->pixelRef()->info() == fPixelRef->info()) {
928 dst->pixelRef()->cloneGenID(*fPixelRef);
970 // pixelRef must be non NULL or tmpDst.readyToDraw() would hav
    [all...]

Completed in 589 milliseconds