Home
last modified time | relevance | path

Searched refs:filterStr (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/canvas/
H A Dcustom_paint_paint_method.h103 void SetFilterParam(const std::string& filterStr);
334 bool GetFilterType(const std::string& filterStr, std::vector<FilterProperty>& filters);
348 FilterType FilterStrToFilterType(const std::string& filterStr);
H A Doffscreen_canvas_pattern.cpp228 void OffscreenCanvasPattern::SetFilterParam(const std::string& filterStr) in SetFilterParam() argument
230 offscreenPaintMethod_->SetFilterParam(filterStr); in SetFilterParam()
H A Dcanvas_paint_op.h156 explicit SetFilterParamOp(const std::string& filterStr): filterStr(std::move(filterStr)) {} in SetFilterParamOp()
157 std::string filterStr; member
H A Doffscreen_canvas_pattern.h101 void SetFilterParam(const std::string& filterStr);
H A Dcanvas_pattern.cpp1060 void CanvasPattern::SetFilterParam(const std::string& filterStr) in SetFilterParam() argument
1063 auto task = [filterStr](CanvasPaintMethod& paintMethod) { in SetFilterParam()
1064 paintMethod.SetFilterParam(filterStr); in SetFilterParam()
1068 paintMethod_->PushTask<SetFilterParamOp>(filterStr); in SetFilterParam()
H A Dcanvas_pattern.h177 void SetFilterParam(const std::string& filterStr);
H A Dcanvas_paint_op.cpp108 method->SetFilterParam(filterStr); in Draw()
H A Dcustom_paint_paint_method.cpp1443 void CustomPaintPaintMethod::SetFilterParam(const std::string& filterStr) in SetFilterParam() argument
1446 if (!GetFilterType(filterStr, filters)) { in SetFilterParam()
1716 bool CustomPaintPaintMethod::GetFilterType(const std::string& filterStr, std::vector<FilterProperty… in GetFilterType() argument
1718 std::string paramData = filterStr; in GetFilterType()
1836 FilterType CustomPaintPaintMethod::FilterStrToFilterType(const std::string& filterStr) in FilterStrToFilterType() argument
1851 …return ConvertStrToEnum(filterStr.c_str(), filterTypeTable, ArraySize(filterTypeTable), FilterType… in FilterStrToFilterType()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/canvas/
H A Djs_canvas_renderer.cpp898 std::string filterStr = "none"; in JsSetFilter() local
899 if (info.GetStringArg(0, filterStr) && !filterStr.empty()) { in JsSetFilter()
900 renderingContext2DModel_->SetFilterParam(filterStr); in JsSetFilter()