/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/draw/ |
H A D | surface_test.cpp | 162 auto ret = surface->GetImageSnapshot(); 180 auto ret = surface->GetImageSnapshot(); 195 auto ret = surface->GetImageSnapshot(bounds); 214 auto ret = surface->GetImageSnapshot(bounds); 233 auto ret = surface->GetImageSnapshot(bounds);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/draw/ |
H A D | surface.cpp | 94 std::shared_ptr<Image> Surface::GetImageSnapshot() const in GetImageSnapshot() function in OHOS::Rosen::Drawing::Surface 96 return impl_->GetImageSnapshot(); in GetImageSnapshot() 104 std::shared_ptr<Image> Surface::GetImageSnapshot(const RectI& bounds, bool allowRefCache) const in GetImageSnapshot() function in OHOS::Rosen::Drawing::Surface 106 return impl_->GetImageSnapshot(bounds, allowRefCache); in GetImageSnapshot()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/impl_interface/ |
H A D | surface_impl.h | 55 virtual std::shared_ptr<Image> GetImageSnapshot() const = 0; 56 …virtual std::shared_ptr<Image> GetImageSnapshot(const RectI& bounds, bool allowRefCache = true) co…
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/ |
H A D | skia_surface.h | 59 std::shared_ptr<Image> GetImageSnapshot() const override; 60 …std::shared_ptr<Image> GetImageSnapshot(const RectI& bounds, bool allowRefCache = true) const over…
|
H A D | skia_surface.cpp | 343 std::shared_ptr<Image> SkiaSurface::GetImageSnapshot() const in GetImageSnapshot() function in OHOS::Rosen::Drawing::SkiaSurface 361 std::shared_ptr<Image> SkiaSurface::GetImageSnapshot(const RectI& bounds, bool allowRefCache) const in GetImageSnapshot() function in OHOS::Rosen::Drawing::SkiaSurface
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/draw/ |
H A D | surface.h | 137 std::shared_ptr<Image> GetImageSnapshot() const; 150 std::shared_ptr<Image> GetImageSnapshot(const RectI& bounds, bool allowRefCache = true) const;
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/skia_adapter/ |
H A D | skia_surface_test.cpp | 60 auto image = surface->GetImageSnapshot(); 352 auto snapshot = skiaSurface.GetImageSnapshot(); 372 auto snapshot = skiaSurface.GetImageSnapshot(rectI);
|
H A D | skia_image_test.cpp | 107 auto image = surface->GetImageSnapshot(); 233 auto image = surface->GetImageSnapshot(); 329 auto image = surface->GetImageSnapshot();
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/pointer_render/ |
H A D | rs_pointer_render_manager_test.cpp | 95 RSPointerRenderManager::GetInstance().SetCacheImgForPointer(surface->GetImageSnapshot()); 140 RSPointerRenderManager::GetInstance().SetCacheImgForPointer(surface->GetImageSnapshot());
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/pipeline/ |
H A D | rs_canvas_drawing_render_node.cpp | 80 auto image = preSurface->GetImageSnapshot(); in ResetSurfaceWithTexture() 163 image_ = surface_->GetImageSnapshot(); 358 auto image = surface_->GetImageSnapshot(); in GetPixelmap() 410 auto pixelmapImage = surface->GetImageSnapshot(); in GetPixelmap()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/drawsurface_fuzzer/ |
H A D | drawsurface_fuzzer.cpp | 105 surface.GetImageSnapshot(); in SurfaceFuzzTest002() 111 surface.GetImageSnapshot(bounds); in SurfaceFuzzTest002()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/drawable/ |
H A D | rs_property_drawable_utils.cpp | 122 std::shared_ptr<Drawing::Image> shadowRegionImage = drSurface->GetImageSnapshot(regionBounds); in GetShadowRegionImage() 347 auto imageSnapshot = surface->GetImageSnapshot(imageClipIBounds, false); in DrawFilter() 395 imageSnapshot = surface->GetImageSnapshot(); in DrawForegroundFilter() 468 auto imageSnapshot = surface->GetImageSnapshot(imageRect); in DrawBackgroundEffect() 487 auto imageCache = offscreenSurface->GetImageSnapshot(); in DrawBackgroundEffect() 540 auto image = surface->GetImageSnapshot(clipBounds, false); in DrawLightUpEffect() 615 auto image = surface->GetImageSnapshot(clipBounds, false); in DrawDynamicDim() 817 auto imageSnapshot = drSurface->GetImageSnapshot(clipBounds); in DrawBinarization() 889 auto image = surface->GetImageSnapshot(rectI); in DrawPixelStretch() 1173 auto imageSnapshot = canvas.GetSurface()->GetImageSnapshot(canvas.GetDeviceClipBounds()); in GetInvertBackgroundColor()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/property/ |
H A D | rs_property_drawable_frame_geometry.cpp | 44 auto imageSnapshot = drSurface->GetImageSnapshot(clipBounds); in Draw()
|
H A D | rs_properties_painter.cpp | 538 imageSnapshot = surface->GetImageSnapshot(); in DrawForegroundFilter() 660 auto imageSnapshot = surface->GetImageSnapshot(imageClipIBounds); in DrawFilter() 769 auto imageSnapshot = surface->GetImageSnapshot(imageRect); in DrawBackgroundEffect() 789 auto imageCache = offscreenSurface->GetImageSnapshot(); in DrawBackgroundEffect() 967 auto image = surface->GetImageSnapshot(rectI); in DrawPixelStretch() 1503 auto imageSnapshot = spherizeSurface->GetImageSnapshot(); in DrawSpherize() 1603 auto imageSnapshot = surface->GetImageSnapshot(clipBounds); in DrawColorFilter() 1626 auto imageSnapshot = drSurface->GetImageSnapshot(clipBounds); in DrawBinarizationShader() 1709 auto image = surface->GetImageSnapshot(clipBounds); in DrawLightUpEffect() 1836 auto image = surface->GetImageSnapshot(clipBounds); in DrawDynamicDim()
|
H A D | rs_filter_cache_manager.cpp | 215 auto snapshot = drawingSurface->GetImageSnapshot(snapshotIBounds, false); in TakeSnapshot() 264 auto filteredSnapshot = offscreenSurface->GetImageSnapshot(); in GenerateFilteredSnapshot()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/ |
H A D | rs_hps_blur.cpp | 69 auto imageCache = offscreenSurface->GetImageSnapshot(); in ApplyHpsBlur()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/drawable/ |
H A D | rs_canvas_drawing_render_node_drawable.cpp | 291 image_ = surface_->GetImageSnapshot(); // planning: return image_ in FlushForGL() 316 image_ = surface_->GetImageSnapshot(); in FlushForVK() 355 auto image = surface->GetImageSnapshot(); // planning: adapt multithread in ProcessCPURenderInBackgroundThread() 509 auto pixelmapImage = surface->GetImageSnapshot(); in GetPixelmap()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/darwin/ |
H A D | rs_surface_darwin.cpp | 106 auto image = frameDarwin->surface_->GetImageSnapshot(); in FlushFrame()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/windows/ |
H A D | rs_surface_windows.cpp | 108 auto image = frameWindows->surface_->GetImageSnapshot(); in FlushFrame()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/transaction/ |
H A D | rs_ashmem_test.cpp | 160 return surface->GetImageSnapshot(); in CreateDrawingImage()
|
H A D | rs_marshalling_test.cpp | 135 return surface->GetImageSnapshot(); in CreateDrawingImage()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_surface_capture_task_parallel.cpp | 221 surfaceNodeDrawable_->SetCacheImageByCapture(surface->GetImageSnapshot()); in Run() 249 std::shared_ptr<Drawing::Image> img(surface.get()->GetImageSnapshot()); in Run()
|
H A D | rs_surface_capture_task.cpp | 98 std::shared_ptr<Drawing::Image> img(surface.get()->GetImageSnapshot()); in Run()
|
H A D | rs_ui_capture_task_parallel.cpp | 226 std::shared_ptr<Drawing::Image> img(surface.get()->GetImageSnapshot()); in Run()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/overdraw/ |
H A D | rs_gpu_overdraw_canvas_listener.cpp | 56 auto image = listenedSurface_->GetImageSnapshot(); in Draw()
|