Home
last modified time | relevance | path

Searched refs:NativeRequestFrame (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/drawing_engine/drawing_surface/
H A Dsurface_base.h40 virtual std::unique_ptr<SurfaceFrame> NativeRequestFrame(int32_t width, int32_t height) = 0;
H A Dsurface_ohos_raster.h31 std::unique_ptr<SurfaceFrame> NativeRequestFrame(int32_t width, int32_t height) override;
H A Dsurface_ohos_gl.h38 std::unique_ptr<SurfaceFrame> NativeRequestFrame(int32_t width, int32_t height) override;
H A Dsurface_ohos_vulkan.h43 std::unique_ptr<SurfaceFrame> NativeRequestFrame(int32_t width, int32_t height) override;
H A Dsurface_ohos_gl.cpp56 std::unique_ptr<SurfaceFrame> SurfaceOhosGl::NativeRequestFrame(int32_t width, int32_t height) in NativeRequestFrame() function in OHOS::Rosen::SurfaceOhosGl
H A Dsurface_ohos_raster.cpp35 std::unique_ptr<SurfaceFrame> SurfaceOhosRaster::NativeRequestFrame(int32_t width, int32_t height) in NativeRequestFrame() function in OHOS::Rosen::SurfaceOhosRaster
H A Dsurface_ohos_vulkan.cpp169 std::unique_ptr<SurfaceFrame> SurfaceOhosVulkan::NativeRequestFrame(int32_t width, int32_t height) in NativeRequestFrame() function in OHOS::Rosen::SurfaceOhosVulkan
/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/
H A Ddrawing_engine_sample.cpp220 surfaceFrame = surface_->NativeRequestFrame(drawingWidth, drawingHeight); in DoDraw()