Home
last modified time | relevance | path

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

/aosp12/frameworks/base/libs/hwui/
H A DReadback.h53 CopyResult copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap);
59 CopyResult copyImageInto(const sk_sp<SkImage>& image, Matrix4& texTransform,
H A DReadback.cpp246 return copyImageInto(image, texTransform, srcRect, bitmap); in copySurfaceIntoLegacy()
257 return copyImageInto(hwBitmap->makeImage(), transform, srcRect, bitmap); in copyHWBitmapInto()
280 CopyResult Readback::copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap) { in copyImageInto() function in android::uirenderer::Readback
285 return copyImageInto(image, transform, srcRect, bitmap); in copyImageInto()
288 CopyResult Readback::copyImageInto(const sk_sp<SkImage>& image, Matrix4& texTransform, in copyImageInto() function in android::uirenderer::Readback
/aosp12/frameworks/base/libs/hwui/renderthread/
H A DRenderProxy.cpp400 int RenderProxy::copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap) { in copyImageInto() function in android::uirenderer::renderthread::RenderProxy
404 return (int)thread.readback().copyImageInto(image, bitmap); in copyImageInto()
407 [&]() -> int { return (int)thread.readback().copyImageInto(image, bitmap); }); in copyImageInto()
H A DRenderProxy.h139 static int copyImageInto(const sk_sp<SkImage>& image, SkBitmap* bitmap);
/aosp12/frameworks/base/libs/hwui/jni/
H A Dandroid_graphics_HardwareRenderer.cpp503 if (RenderProxy::copyImageInto(sk_ref_sp(img), &bm)) { in imageForCache()