Home
last modified time | relevance | path

Searched refs:CreateCornerPathEffect (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/skia_adapter/
H A Dskia_path_effect_test.cpp93 auto pathEffect1 = PathEffect::CreateCornerPathEffect(10); // 10: radius
94 auto pathEffect2 = PathEffect::CreateCornerPathEffect(10); // 10: radius
108 auto pathEffect1 = PathEffect::CreateCornerPathEffect(10); // 10: radius
109 auto pathEffect2 = PathEffect::CreateCornerPathEffect(10); // 10: radius
H A Dskia_paint_test.cpp149 pen.SetPathEffect(PathEffect::CreateCornerPathEffect(10));
186 paint.SetPathEffect(PathEffect::CreateCornerPathEffect(10));
194 paint2.SetPathEffect(PathEffect::CreateCornerPathEffect(10));
226 pen.SetPathEffect(PathEffect::CreateCornerPathEffect(10));
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/path_effect_napi/
H A Djs_path_effect.cpp28 … DECLARE_NAPI_STATIC_FUNCTION("createCornerPathEffect", JsPathEffect::CreateCornerPathEffect), in Init()
137 napi_value JsPathEffect::CreateCornerPathEffect(napi_env env, napi_callback_info info) in CreateCornerPathEffect() function in OHOS::Rosen::Drawing::JsPathEffect
145 std::shared_ptr<PathEffect> pathEffect = PathEffect::CreateCornerPathEffect(radius); in CreateCornerPathEffect()
H A Djs_path_effect.h36 static napi_value CreateCornerPathEffect(napi_env env, napi_callback_info info);
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/effect/patheffect_fuzzer/
H A Dpatheffect_fuzzer.cpp43 PathEffect::CreateCornerPathEffect(radius); in PathEffectFuzzTest()
58 PathEffect::CreateCornerPathEffect(radius); in PathEffectFuzzTest()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/effect/
H A Dpath_effect_test.cpp104 auto pathEffect = PathEffect::CreateCornerPathEffect(0.5f);
117 auto pathEffect = PathEffect::CreateCornerPathEffect(0.2f);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/effect/
H A Dpath_effect.h76 static std::shared_ptr<PathEffect> CreateCornerPathEffect(scalar radius);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/effect/
H A Dpath_effect.cpp84 std::shared_ptr<PathEffect> PathEffect::CreateCornerPathEffect(scalar radius) in CreateCornerPathEffect() function in OHOS::Rosen::Drawing::PathEffect
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/paint_fuzzer/
H A Dpaint_fuzzer.cpp116 std::shared_ptr<PathEffect> pathEffect = PathEffect::CreateCornerPathEffect(radius); in PaintFuzzTest002()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/pen_fuzzer/
H A Dpen_fuzzer.cpp80 std::shared_ptr<PathEffect> pathEffect = PathEffect::CreateCornerPathEffect(radius); in PenFuzzTestInner03()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/draw/
H A Dpen_test.cpp870 pen.SetPathEffect(PathEffect::CreateCornerPathEffect(10));
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/recording/
H A Dcmd_list_helper_test.cpp398 const std::shared_ptr<PathEffect> effect = PathEffect::CreateCornerPathEffect(10);
H A Ddraw_cmd_test.cpp151 auto pathEffect = PathEffect::CreateCornerPathEffect(10);
/ohos5.0/foundation/multimodalinput/input/service/window_manager/src/
H A Dknuckle_drawing_manager.cpp157 paint_.SetPathEffect(Rosen::Drawing::PathEffect::CreateCornerPathEffect(PAINT_PATH_RADIUS)); in KnuckleDrawingManager()