Home
last modified time | relevance | path

Searched refs:copyLayerInto (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/libs/hwui/
DReadback.h54 CopyResult copyLayerInto(DeferredLayerUpdater* layer, SkBitmap* bitmap);
60 bool copyLayerInto(Layer* layer, const SkRect* srcRect, const SkRect* dstRect,
DReadback.cpp89 CopyResult Readback::copyLayerInto(DeferredLayerUpdater* deferredLayer, SkBitmap* bitmap) { in copyLayerInto() function in android::uirenderer::Readback
102 if (copyLayerInto(layer, nullptr, &dstRect, bitmap)) { in copyLayerInto()
154 if (copyLayerInto(&layer, &skiaSrcRect, &skiaDestRect, bitmap)) { in copyImageInto()
161 bool Readback::copyLayerInto(Layer* layer, const SkRect* srcRect, const SkRect* dstRect, in copyLayerInto() function in android::uirenderer::Readback
/frameworks/base/core/java/android/view/
DTextureLayer.java94 return mRenderer.copyLayerInto(this, bitmap); in copyInto()
/frameworks/base/libs/hwui/renderthread/
DRenderProxy.h90 ANDROID_API bool copyLayerInto(DeferredLayerUpdater* layer, SkBitmap& bitmap);
DRenderProxy.cpp161 bool RenderProxy::copyLayerInto(DeferredLayerUpdater* layer, SkBitmap& bitmap) { in copyLayerInto() function in android::uirenderer::renderthread::RenderProxy
165 return thread.readback().copyLayerInto(layer, &bitmap) == CopyResult::Success; in copyLayerInto()
/frameworks/base/graphics/java/android/graphics/
DHardwareRenderer.java693 public boolean copyLayerInto(final TextureLayer layer, final Bitmap bitmap) { in copyLayerInto() method in HardwareRenderer
/frameworks/base/libs/hwui/jni/
Dandroid_graphics_HardwareRenderer.cpp285 return proxy->copyLayerInto(layer, bitmap); in android_view_ThreadedRenderer_copyLayerInto()