Skip to content

Commit

Permalink
Merge pull request #69346 from DeeJayLSP/update_nanosvg
Browse files Browse the repository at this point in the history
Update nanosvg to GIT (2022.11)
  • Loading branch information
akien-mga committed Nov 30, 2022
2 parents 425b42b + d038666 commit d5e0e63
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
2 changes: 1 addition & 1 deletion thirdparty/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ Collection of single-file libraries used in Godot components.
## nanosvg

- Upstream: https://github.com/memononen/nanosvg
- Version: git (bd16c4e6b2842e1f0286dc374d21f85c659862e5, 2022)
- Version: git (f0a3e1034dd22e2e87e5db22401e44998383124e, 2022)
- License: zlib

Files extracted from the upstream source:
Expand Down
21 changes: 19 additions & 2 deletions thirdparty/nanosvg/nanosvg.h
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ static void nsvg__curveBounds(float* bounds, float* curve)
}
}

static NSVGparser* nsvg__createParser()
static NSVGparser* nsvg__createParser(void)
{
NSVGparser* p;
p = (NSVGparser*)malloc(sizeof(NSVGparser));
Expand Down Expand Up @@ -1194,6 +1194,19 @@ static const char* nsvg__parseNumber(const char* s, char* it, const int size)
return s;
}

static const char* nsvg__getNextPathItemWhenArcFlag(const char* s, char* it)
{
it[0] = '\0';
while (*s && (nsvg__isspace(*s) || *s == ',')) s++;
if (!*s) return s;
if (*s == '0' || *s == '1') {
it[0] = *s++;
it[1] = '\0';
return s;
}
return s;
}

static const char* nsvg__getNextPathItem(const char* s, char* it)
{
it[0] = '\0';
Expand Down Expand Up @@ -2279,7 +2292,11 @@ static void nsvg__parsePath(NSVGparser* p, const char** attr)
nargs = 0;

while (*s) {
s = nsvg__getNextPathItem(s, item);
item[0] = '\0';
if ((cmd == 'A' || cmd == 'a') && (nargs == 3 || nargs == 4))
s = nsvg__getNextPathItemWhenArcFlag(s, item);
if (!*item)
s = nsvg__getNextPathItem(s, item);
if (!*item) break;
if (cmd != '\0' && nsvg__isCoordinate(item)) {
if (nargs < 10)
Expand Down
4 changes: 2 additions & 2 deletions thirdparty/nanosvg/nanosvgrast.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ typedef struct NSVGrasterizer NSVGrasterizer;
*/

// Allocated rasterizer context.
NSVGrasterizer* nsvgCreateRasterizer();
NSVGrasterizer* nsvgCreateRasterizer(void);

// Rasterizes SVG image, returns RGBA image (non-premultiplied alpha)
// r - pointer to rasterizer context
Expand Down Expand Up @@ -150,7 +150,7 @@ struct NSVGrasterizer
int width, height, stride;
};

NSVGrasterizer* nsvgCreateRasterizer()
NSVGrasterizer* nsvgCreateRasterizer(void)
{
NSVGrasterizer* r = (NSVGrasterizer*)malloc(sizeof(NSVGrasterizer));
if (r == NULL) goto error;
Expand Down

0 comments on commit d5e0e63

Please sign in to comment.