Closed rainyl closed 4 months ago
Currently many native classes were wrapped with void *, which is not efficient for some classes, with dart_api we can create dart objects from native side directly, which can improve performance significantly, e.g., VecVecPoint -> List<List<Point>>
void *
VecVecPoint
List<List<Point>>
Unnecessary, closed.
Currently many native classes were wrapped with
void *
, which is not efficient for some classes, with dart_api we can create dart objects from native side directly, which can improve performance significantly, e.g.,VecVecPoint
->List<List<Point>>