Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ui_lite/frameworks/common/
H A Dscreen.cpp65 BlendOption blendOption; in GetCurrentScreenBitmap()
66 blendOption.opacity = OPA_OPAQUE; in GetCurrentScreenBitmap()
67 blendOption.mode = BLEND_SRC; in GetCurrentScreenBitmap()
78 baseGfxEngine->Blit(dstBufferInfo, dstPos, *bufferInfo, screenRect, blendOption); in GetCurrentScreenBitmap()
/ohos5.0/foundation/arkui/ui_lite/frameworks/engines/gfx/
H A Dsoft_engine.cpp105 const BlendOption& blendOption) in Blit() argument
109blendOption.opacity, static_cast<uint8_t*>(dst.virAddr), dst.stride, dst.mode, subRect.GetX(), sub… in Blit()
/ohos5.0/foundation/arkui/ui_lite/interfaces/innerkits/engines/gfx/
H A Dsoft_engine.h78 const BlendOption& blendOption) override;
H A Dgfx_engine_manager.h134 const BlendOption& blendOption) = 0;
/ohos5.0/docs/zh-cn/device-dev/subsystems/
H A Dsubsys-graphics-porting-guide.md90 const BlendOption& blendOption) = 0;
/ohos5.0/docs/en/device-dev/subsystems/
H A Dsubsys-graphics-porting-guide.md90 const BlendOption& blendOption) = 0;
/ohos5.0/foundation/arkui/ui_lite/frameworks/draw/
H A Ddraw_utils.cpp411 BlendOption blendOption; in DrawImage() local
412 blendOption.opacity = opa; in DrawImage()
413 blendOption.mode = BLEND_SRC_OVER; in DrawImage()
414 BaseGfxEngine::GetInstance()->Blit(gfxDstBuffer, dstPos, src, maskedArea, blendOption); in DrawImage()