Home
last modified time | relevance | path

Searched refs:BlendMethod (Results 1 – 12 of 12) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgSwRenderer.cpp448 bool SwRenderer::blend(BlendMethod method) in blend()
454 case BlendMethod::Normal: in blend()
457 case BlendMethod::Multiply: in blend()
460 case BlendMethod::Screen: in blend()
463 case BlendMethod::Overlay: in blend()
466 case BlendMethod::Darken: in blend()
469 case BlendMethod::Lighten: in blend()
472 case BlendMethod::ColorDodge: in blend()
475 case BlendMethod::ColorBurn: in blend()
478 case BlendMethod::HardLight: in blend()
[all …]
DtvgPaint.cpp378 blendMethod = BlendMethod::Normal; in reset()
520 Result Paint::blend(BlendMethod method) noexcept in blend()
523 …== BlendMethod::Hue || method == BlendMethod::Saturation || method == BlendMethod::Color || method… in blend()
DtvgSwRenderer.h52 bool blend(BlendMethod method) override;
DtvgPaint.h78 BlendMethod blendMethod;
DtvgScene.h100 if (PP(scene)->blendMethod != BlendMethod::Normal) return true; in needComposition()
Dthorvg.h194 enum class BlendMethod : uint8_t enum
406 Result blend(BlendMethod method) noexcept;
DtvgLottieModel.h795 BlendMethod blendMethod = BlendMethod::Normal;
DtvgRender.h325 virtual bool blend(BlendMethod method) = 0;
DtvgSwCommon.h256 BlendMethod blendMethod = BlendMethod::Normal;
DtvgCapi.cpp246 return (Tvg_Result) reinterpret_cast<Paint*>(paint)->blend((BlendMethod)method); in tvg_paint_set_blend_method()
DtvgLottieParser.cpp1360 else if (KEY_AS("bm")) layer->blendMethod = (BlendMethod) getInt(); in parseLayer()
/lvgl-latest/src/others/vg_lite_tvg/
Dvg_lite_tvg.cpp298 static BlendMethod blend_method_conv(vg_lite_blend_t blend);
600 TVG_CHECK_RETURN_VG_ERROR(shape->blend(BlendMethod::SrcOver)); in vg_lite_clear()
2196 static BlendMethod blend_method_conv(vg_lite_blend_t blend) in blend_method_conv()
2200 return BlendMethod::SrcOver; in blend_method_conv()
2203 return BlendMethod::Normal; in blend_method_conv()
2206 return BlendMethod::Normal; in blend_method_conv()
2209 return BlendMethod::Screen; in blend_method_conv()
2212 return BlendMethod::Add; in blend_method_conv()
2215 return BlendMethod::Multiply; in blend_method_conv()
2221 return BlendMethod::Normal; in blend_method_conv()