Home
last modified time | relevance | path

Searched refs:copyImageInto (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/libs/hwui/platform/host/
DReadback.cpp35 CopyResult Readback::copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap) { in copyImageInto() function in android::uirenderer::Readback
39 CopyResult Readback::copyImageInto(const sk_sp<SkImage>& image, const Rect& srcRect, in copyImageInto() function in android::uirenderer::Readback
/frameworks/base/libs/hwui/
DReadback.h48 CopyResult copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap);
53 CopyResult copyImageInto(const sk_sp<SkImage>& image, const Rect& srcRect, SkBitmap* bitmap);
DReadback.cpp277 return copyImageInto(hwBitmap->makeImage(), srcRect, bitmap); in copyHWBitmapInto()
300 CopyResult Readback::copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap) { in copyImageInto() function in android::uirenderer::Readback
302 return copyImageInto(image, srcRect, bitmap); in copyImageInto()
305 CopyResult Readback::copyImageInto(const sk_sp<SkImage>& image, const Rect& srcRect, in copyImageInto() function in android::uirenderer::Readback
/frameworks/base/libs/hwui/renderthread/
DRenderProxy.cpp487 int RenderProxy::copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap) { in copyImageInto() function in android::uirenderer::renderthread::RenderProxy
491 return (int)thread.readback().copyImageInto(image, bitmap); in copyImageInto()
494 [&]() -> int { return (int)thread.readback().copyImageInto(image, bitmap); }); in copyImageInto()
DRenderProxy.h152 static int copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap);
/frameworks/base/libs/hwui/jni/
Dandroid_graphics_HardwareRenderer.cpp502 if (RenderProxy::copyImageInto(sk_ref_sp(img), &bm)) { in imageForCache()