Symbol: NSVGpath
src/apps/icon-o-matic/import_export/svg/DocumentBuilder.cpp
141
for (NSVGpath* svgPath = svgShape->paths; svgPath != NULL;
src/apps/icon-o-matic/import_export/svg/nanosvg.h
1032
NSVGpath* path = NULL;
src/apps/icon-o-matic/import_export/svg/nanosvg.h
1043
path = (NSVGpath*)malloc(sizeof(NSVGpath));
src/apps/icon-o-matic/import_export/svg/nanosvg.h
1045
memset(path, 0, sizeof(NSVGpath));
src/apps/icon-o-matic/import_export/svg/nanosvg.h
135
struct NSVGpath* next; // Pointer to next path, or NULL if last element.
src/apps/icon-o-matic/import_export/svg/nanosvg.h
154
NSVGpath* paths; // Linked list of paths in the image.
src/apps/icon-o-matic/import_export/svg/nanosvg.h
173
NSVGpath* nsvgDuplicatePath(NSVGpath* p);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2788
NSVGpath* path;
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2929
NSVGpath* nsvgDuplicatePath(NSVGpath* p)
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2931
NSVGpath* res = NULL;
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2936
res = (NSVGpath*)malloc(sizeof(NSVGpath));
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2938
memset(res, 0, sizeof(NSVGpath));
src/apps/icon-o-matic/import_export/svg/nanosvg.h
451
NSVGpath* plist;
src/apps/icon-o-matic/import_export/svg/nanosvg.h
657
static void nsvg__deletePaths(NSVGpath* path)
src/apps/icon-o-matic/import_export/svg/nanosvg.h
660
NSVGpath *next = path->next;
src/apps/icon-o-matic/import_export/svg/nanosvg.h
909
NSVGpath* path;
src/apps/icon-o-matic/import_export/svg/nanosvg.h
942
NSVGpath* path;