Home
last modified time | relevance | path

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

/aosp14/frameworks/base/libs/hwui/
H A DReadback.h48 CopyResult copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap);
53 CopyResult copyImageInto(const sk_sp<SkImage>& image, const Rect& srcRect, SkBitmap* bitmap);
H A DReadback.cpp274 return copyImageInto(hwBitmap->makeImage(), srcRect, bitmap); in copyHWBitmapInto()
297 CopyResult Readback::copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap) { in copyImageInto() function in android::uirenderer::Readback
299 return copyImageInto(image, srcRect, bitmap); in copyImageInto()
302 CopyResult Readback::copyImageInto(const sk_sp<SkImage>& image, const Rect& srcRect, in copyImageInto() function in android::uirenderer::Readback
/aosp14/frameworks/base/libs/hwui/renderthread/
H A DRenderProxy.cpp467 int RenderProxy::copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap) { in copyImageInto() function in android::uirenderer::renderthread::RenderProxy
471 return (int)thread.readback().copyImageInto(image, bitmap); in copyImageInto()
474 [&]() -> int { return (int)thread.readback().copyImageInto(image, bitmap); }); in copyImageInto()
H A DRenderProxy.h151 static int copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap);
/aosp14/frameworks/base/libs/hwui/jni/
H A Dandroid_graphics_HardwareRenderer.cpp495 if (RenderProxy::copyImageInto(sk_ref_sp(img), &bm)) { in imageForCache()