/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/ |
H A D | rs_profiler_dump.cpp | 432 auto colorBlend = properties.GetColorBlend(); in DumpNodePropertiesColor() local 433 if (colorBlend.has_value() && !ROSEN_EQ(*colorBlend, RgbPalette::Transparent())) { in DumpNodePropertiesColor() 434 out["ColorBlend"] = "#" + Hex(colorBlend->AsArgbInt()) + " (ARGB)"; in DumpNodePropertiesColor()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ts-universal-attributes-image-effect.md | 172 ## colorBlend<sup>7+</sup> 174 colorBlend(value: Color | string | Resource) 550 Text('colorBlend').fontSize(15).fontColor(0xCCCCCC).width('90%') 551 Image($r('app.media.image')).width('90%').height(30).colorBlend(Color.Green) 552 Image($r('app.media.image')).width('90%').height(30).colorBlend(Color.Blue)
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/rosen/ |
H A D | drawing_decoration_painter.h | 60 …atic void PaintColorBlend(const RSRoundRect& frameSize, RSCanvas* canvas, const Color& colorBlend);
|
H A D | drawing_decoration_painter.cpp | 981 …rationPainter::PaintColorBlend(const RSRoundRect& rRect, RSCanvas* canvas, const Color& colorBlend) in PaintColorBlend() argument 983 if (colorBlend.GetValue() != COLOR_MASK) { in PaintColorBlend() 991 … colorBlend.GetAlpha(), colorBlend.GetRed(), colorBlend.GetGreen(), colorBlend.GetBlue()), in PaintColorBlend()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/painter/ |
H A D | rosen_decoration_painter.h | 129 … static void PaintColorBlend(const SkRRect& outerRRect, SkCanvas* canvas, const Color& colorBlend, 133 const Color& colorBlend, const Color& color);
|
H A D | rosen_decoration_painter.cpp | 1527 const SkRRect& outerRRect, SkCanvas* canvas, const Color& colorBlend, const Color& color) in PaintColorBlend() argument 1529 if (colorBlend.GetValue() != COLOR_MASK) { in PaintColorBlend() 1537 …SkColorSetARGB(colorBlend.GetAlpha(), colorBlend.GetRed(), colorBlend.GetGreen(), colorBlend.GetBl… in PaintColorBlend() 1546 const RSRoundRect& outerRRect, RSCanvas* canvas, const Color& colorBlend, const Color& color) in PaintColorBlend() argument 1548 if (colorBlend.GetValue() != COLOR_MASK) { in PaintColorBlend() 1553 RSColorFilter::CreateBlendModeColorFilter(colorBlend.GetValue(), RSBlendMode::PLUS); in PaintColorBlend()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | skia_decoration_painter.h | 71 const SkRRect& rRect, SkCanvas* canvas, const Color& colorBlend);
|
H A D | skia_decoration_painter.cpp | 993 …DecorationPainter::PaintColorBlend(const SkRRect& rRect, SkCanvas* canvas, const Color& colorBlend) in PaintColorBlend() argument 995 if (colorBlend.GetValue() != COLOR_MASK) { in PaintColorBlend() 1002 …SkColorSetARGB(colorBlend.GetAlpha(), colorBlend.GetRed(), colorBlend.GetGreen(), colorBlend.GetBl… in PaintColorBlend()
|
H A D | rosen_render_context.h | 476 void OnFrontColorBlendUpdate(const Color& colorBlend) override; 709 std::shared_ptr<ColorBlendModifier> colorBlend; member
|
H A D | rosen_render_context.cpp | 4242 auto colorBlend = graphicProps->GetFrontColorBlendValue(); local 4243 OnFrontColorBlendUpdate(colorBlend); 4358 void RosenRenderContext::OnFrontColorBlendUpdate(const Color& colorBlend) argument 4361 rsNode_->SetColorBlend(colorBlend.GetValue());
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/pipeline/ |
H A D | rs_canvas_render_node_test.cpp | 409 std::optional<Color> colorBlend = color; variable 410 property.SetColorBlend(colorBlend);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/property/ |
H A D | rs_properties.cpp | 3503 void RSProperties::SetColorBlend(const std::optional<Color>& colorBlend) in SetColorBlend() argument 3505 colorBlend_ = colorBlend; in SetColorBlend() 3685 auto colorBlend = colorBlend_.value(); in GenerateColorFilter() local 3687 … colorBlend.GetAlpha(), colorBlend.GetRed(), colorBlend.GetGreen(), colorBlend.GetBlue()), in GenerateColorFilter() 4197 auto colorBlend = GetColorBlend(); in Dump() local 4198 if (colorBlend.has_value() && !ROSEN_EQ(*colorBlend, RgbPalette::Transparent()) && in Dump() 4199 sprintf_s(buffer, UINT8_MAX, ", ColorBlend[#%08X]", colorBlend->AsArgbInt()) != -1) { in Dump()
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ts-universal-attributes-image-effect.md | 172 ## colorBlend<sup>7+</sup> 174 colorBlend(value: Color | string | Resource) 539 Text('colorBlend').fontSize(15).fontColor(0xCCCCCC).width('90%') 540 Image($r('app.media.image')).width('90%').height(30).colorBlend(Color.Green) 541 Image($r('app.media.image')).width('90%').height(30).colorBlend(Color.Blue)
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/property/ |
H A D | rs_properties_test.cpp | 2998 std::optional<Color> colorBlend = color; variable 2999 properties.SetColorBlend(colorBlend); 3066 std::optional<Color> colorBlend = color; variable 3067 properties.SetColorBlend(colorBlend);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/src/ |
H A D | ArkXComponent.ts | 226 colorBlend(value: string | Resource | Color): this {
|
H A D | ArkSpan.ts | 587 colorBlend(value: Color | string | Resource): this {
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/property/ |
H A D | rs_properties.h | 501 void SetColorBlend(const std::optional<Color>& colorBlend);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/ |
H A D | inspector_composed_element.cpp | 1400 auto colorBlend = node->GetColorBlend(); in GetColorBlend() local 1401 return colorBlend.ColorToString(); in GetColorBlend()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/export/ |
H A D | arkComponent.d.ts | 119 colorBlend(value: Color | string | Resource): this; 554 colorBlend(value: Color | string | Resource): this; 1602 colorBlend(value: string | Resource | Color): this;
|
/ohos5.0/docs/zh-cn/application-dev/quick-start/ |
H A D | arkts-prop.md | 475 .colorBlend('#e6000000')
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | view_abstract.cpp | 2530 void ViewAbstract::SetColorBlend(const Color& colorBlend) in SetColorBlend() argument 2535 ACE_UPDATE_RENDER_CONTEXT(FrontColorBlend, colorBlend); in SetColorBlend() 2538 void ViewAbstract::SetColorBlend(FrameNode* frameNode, const Color& colorBlend) in SetColorBlend() argument 2540 ACE_UPDATE_NODE_RENDER_CONTEXT(FrontColorBlend, colorBlend, frameNode); in SetColorBlend()
|
H A D | view_abstract.h | 501 static void SetColorBlend(FrameNode* frameNode, const Color& colorBlend);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/ui/ |
H A D | rs_node.cpp | 2485 auto colorBlend = Color::FromArgbInt(colorValue); in SetColorBlend() local 2486 …operty<RSColorBlendModifier, RSAnimatableProperty<Color>>(RSModifierType::COLOR_BLEND, colorBlend); in SetColorBlend()
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-Release/ |
H A D | js-apidiff-arkui.md | 288 …类名:CommonMethod;<br>方法or属性:colorBlend(value: Color \| string \| Resource): T;<br>旧版本信息:|类名:CommonM…
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_view_abstract.cpp | 4862 Color colorBlend; in JsColorBlend() local 4864 colorBlend = Color::TRANSPARENT; in JsColorBlend() 4865 SetColorBlend(colorBlend); in JsColorBlend() 4868 if (!ParseJsColor(info[0], colorBlend)) { in JsColorBlend() 4870 colorBlend = Color::TRANSPARENT; in JsColorBlend() 4871 SetColorBlend(colorBlend); in JsColorBlend() 4875 SetColorBlend(colorBlend); in JsColorBlend()
|