Home
last modified time | relevance | path

Searched refs:NSVGimage (Results 1 – 4 of 4) sorted by relevance

/haiku/src/apps/icon-o-matic/import_export/svg/
H A DDocumentBuilder.h35 DocumentBuilder(NSVGimage* image);
56 NSVGimage* fSource;
H A DSVGImporter.cpp63 NSVGimage* svg = nsvgParseFromFile(path.Path(), "px", 96); in Import()
H A Dnanosvg.h158 typedef struct NSVGimage struct
163 } NSVGimage; argument
166 NSVGimage* nsvgParseFromFile(const char* filename, const char* units, float dpi);
170 NSVGimage* nsvgParse(char* input, const char* units, float dpi);
176 void nsvgDelete(NSVGimage* image);
452 NSVGimage* image;
626 p->image = (NSVGimage*)malloc(sizeof(NSVGimage)); in nsvg__createParser()
628 memset(p->image, 0, sizeof(NSVGimage)); in nsvg__createParser()
2876 NSVGimage* nsvgParse(char* input, const char* units, float dpi) in nsvgParse()
2879 NSVGimage* ret = 0; in nsvgParse()
[all …]
H A DDocumentBuilder.cpp33 DocumentBuilder::DocumentBuilder(NSVGimage* source) in DocumentBuilder()