/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/draw/ |
H A D | surface.cpp | 109 std::shared_ptr<Surface> Surface::MakeSurface(int width, int height) const in MakeSurface() function in OHOS::Rosen::Drawing::Surface 111 return impl_->MakeSurface(width, height); in MakeSurface() 114 std::shared_ptr<Surface> Surface::MakeSurface(const ImageInfo& imageinfo) const in MakeSurface() function in OHOS::Rosen::Drawing::Surface 116 return impl_->MakeSurface(imageinfo); in MakeSurface()
|
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/impl_interface/ |
H A D | surface_impl.h | 59 virtual std::shared_ptr<Surface> MakeSurface(int width, int height) const = 0; 60 virtual std::shared_ptr<Surface> MakeSurface(const ImageInfo& imageInfo) const = 0;
|
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/ |
H A D | skia_surface.h | 61 std::shared_ptr<Surface> MakeSurface(int width, int height) const override; 62 std::shared_ptr<Surface> MakeSurface(const ImageInfo& imageInfo) const override;
|
H A D | skia_surface.cpp | 403 std::shared_ptr<Surface> SkiaSurface::MakeSurface(int width, int height) const in MakeSurface() function in OHOS::Rosen::Drawing::SkiaSurface 411 LOGD("SkiaSurface::MakeSurface failed"); in MakeSurface() 420 std::shared_ptr<Surface> SkiaSurface::MakeSurface(const ImageInfo& imageInfo) const in MakeSurface() function in OHOS::Rosen::Drawing::SkiaSurface 429 LOGD("SkiaSurface::MakeSurface failed"); in MakeSurface()
|
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/draw/ |
H A D | surface.h | 156 std::shared_ptr<Surface> MakeSurface(int width, int height) const; 163 std::shared_ptr<Surface> MakeSurface(const ImageInfo& imageinfo) const;
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_draw_window_cache.cpp | 43 auto windowSurface = mainSurface->MakeSurface(bounds.GetWidth(), bounds.GetHeight()); in DrawAndCacheWindowContent()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/drawable/ |
H A D | rs_effect_render_node_drawable.cpp | 90 auto offscreenSurface = surface->MakeSurface(currentRect.GetWidth(), currentRect.GetHeight()); in GenerateEffectDataOnDemand()
|
H A D | rs_display_render_node_drawable.cpp | 1556 offscreenSurface_ = curCanvas_->GetSurface()->MakeSurface(offscreenWidth, offscreenHeight); in PrepareHdrDraw() 1615 offscreenSurface_ = curCanvas_->GetSurface()->MakeSurface(offscreenWidth, offscreenHeight); in PrepareOffscreenRender() 1622 offscreenSurface_ = curCanvas_->GetSurface()->MakeSurface(offscreenWidth, offscreenHeight); in PrepareOffscreenRender() 1625 offscreenSurface_ = curCanvas_->GetSurface()->MakeSurface(offscreenWidth, offscreenHeight); in PrepareOffscreenRender()
|
H A D | rs_surface_render_node_drawable.cpp | 232 offscreenSurface_ = curCanvas_->GetSurface()->MakeSurface(maxRenderSize_, maxRenderSize_); in PrepareOffscreenRender()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/ |
H A D | rs_hps_blur.cpp | 53 std::shared_ptr<Drawing::Surface> offscreenSurface = surface->MakeSurface(dimension[0], dimension[1]);
in ApplyHpsBlur()
|
H A D | rs_foreground_effect_filter.cpp | 199 std::shared_ptr<Drawing::Surface> tmpSurface = surface->MakeSurface(scaledInfoGeo.GetWidth(), in ApplyForegroundEffect()
|
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/skia_adapter/ |
H A D | skia_surface_test.cpp | 216 * @tc.desc: Test MakeSurface 224 auto surface2 = surface->MakeSurface(800, 800); // 800: width, height in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/property/ |
H A D | rs_filter_cache_manager.cpp | 257 auto offscreenSurface = surface->MakeSurface(offscreenRect.GetWidth(), offscreenRect.GetHeight()); in GenerateFilteredSnapshot()
|
H A D | rs_properties_painter.cpp | 736 auto offscreenSurface = surface->MakeSurface(canvas.GetWidth(), canvas.GetHeight()); in DrawBackgroundImageAsEffect() 816 surface->MakeSurface(imageSnapshot->GetWidth(), imageSnapshot->GetHeight()); in ProcessAndCacheImage()
|
H A D | rs_property_drawable_bounds_geometry.cpp | 753 std::shared_ptr<Drawing::Surface> offscreenSurface = surface->MakeSurface(bounds.width_, bounds.height_); in Draw()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/drawable/ |
H A D | rs_property_drawable_utils.cpp | 376 std::shared_ptr<Drawing::Surface> offscreenSurface = surface->MakeSurface(bounds.width_, bounds.height_); in BeginForegroundFilter() 477 surface->MakeSurface(imageSnapshot->GetWidth(), imageSnapshot->GetHeight()); in DrawBackgroundEffect()
|
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/recording/ |
H A D | draw_cmd.cpp | 1608 offScreenSurface = surface->MakeSurface(textBlobBounds->GetWidth(), textBlobBounds->GetHeight()); in GetOffScreenSurfaceAndCanvas() 1749 offscreenSurface = surface->MakeSurface(bounds->GetWidth(), bounds->GetHeight()); in GenerateCachedOpItem() 1809 offscreenSurface = surface->MakeSurface(bounds->GetWidth(), bounds->GetHeight()); in GenerateCachedOpItem()
|