X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=svgtiny_internal.h;h=a729f253ff4e2f2234a1c78051f9178ae82d9da1;hb=d784d2dccd8962d6f6b02767977d741cdfa50061;hp=171f5c07ae7eb036e620132bd4e9d170c2100d3e;hpb=6f7443f938b95b5a5b4b66f5e2f8f93415d888b3;p=libsvgtiny.git diff --git a/svgtiny_internal.h b/svgtiny_internal.h index 171f5c0..a729f25 100644 --- a/svgtiny_internal.h +++ b/svgtiny_internal.h @@ -8,6 +8,8 @@ #ifndef SVGTINY_INTERNAL_H #define SVGTINY_INTERNAL_H +#include + struct svgtiny_gradient_stop { float offset; svgtiny_colour color; @@ -37,16 +39,25 @@ struct svgtiny_parse_state { /* gradients */ unsigned int linear_gradient_stop_count; + const char *gradient_x1, *gradient_y1, *gradient_x2, *gradient_y2; struct svgtiny_gradient_stop gradient_stop[svgtiny_MAX_STOPS]; + bool gradient_user_space_on_use; + struct { + float a, b, c, d, e, f; + } gradient_transform; }; /* svgtiny.c */ -void svgtiny_transform_path(float *p, unsigned int n, - struct svgtiny_parse_state *state); +float svgtiny_parse_length(const char *s, int viewport_size, + const struct svgtiny_parse_state state); void svgtiny_parse_color(const char *s, svgtiny_colour *c, struct svgtiny_parse_state *state); +void svgtiny_parse_transform(char *s, float *ma, float *mb, + float *mc, float *md, float *me, float *mf); struct svgtiny_shape *svgtiny_add_shape(struct svgtiny_parse_state *state); +void svgtiny_transform_path(float *p, unsigned int n, + struct svgtiny_parse_state *state); /* svgtiny_gradient.c */ void svgtiny_find_gradient(const char *id, struct svgtiny_parse_state *state);