Lines Matching refs:dst
966 // 3. Create a path object dst using OH_Drawing_PathCreate.
967 OH_Drawing_Path *dst = OH_Drawing_PathCreate();
973 OH_Drawing_PathTransformWithPerspectiveClip(src, matrix, dst, true);
976 OH_Drawing_PathDestroy(dst);
993 // 3. Create a path object dst using OH_Drawing_PathCreate.
994 OH_Drawing_Path *dst = OH_Drawing_PathCreate();
1000 OH_Drawing_PathTransformWithPerspectiveClip(src, matrix, dst, false);
1003 OH_Drawing_PathDestroy(dst);
1020 // 3. Create a path object dst using OH_Drawing_PathCreate.
1021 OH_Drawing_Path *dst = OH_Drawing_PathCreate();
1024 OH_Drawing_PathTransformWithPerspectiveClip(nullptr, matrix, dst, true);
1028 OH_Drawing_PathTransformWithPerspectiveClip(src, nullptr, dst, true);
1034 OH_Drawing_PathDestroy(dst);
1290 OH_Drawing_Path *dst = OH_Drawing_PathCreate();
1297 OH_Drawing_PathOffset(path, dst, 10, 10);
1314 OH_Drawing_Path *dst = OH_Drawing_PathCreate();
1317 OH_Drawing_PathOffset(nullptr, dst, 10, 10);
1322 OH_Drawing_PathOffset(path, dst, 0.00, 10);
1324 OH_Drawing_PathOffset(path, dst, 10, 0.00);
1327 OH_Drawing_PathDestroy(dst);
1342 OH_Drawing_Path *dst = OH_Drawing_PathCreate();
1348 OH_Drawing_PathOffset(path, dst, 10, 10.0f);
1350 OH_Drawing_PathOffset(path, dst, 10.0f, 10);
1353 OH_Drawing_PathDestroy(dst);
1368 OH_Drawing_Path *dst = OH_Drawing_PathCreate();
1374 OH_Drawing_PathOffset(path, dst, FLT_MAX + 1, 10.0f);
1376 OH_Drawing_PathOffset(path, dst, 10.0f, FLT_MAX + 1);
1379 OH_Drawing_PathDestroy(dst);