| 797 | } |
| 798 | |
| 799 | static NSVGgradientLink* nsvg__createGradientLink(const char* id) |
| 800 | { |
| 801 | NSVGgradientLink* grad = (NSVGgradientLink*)AllocateZeroPool(sizeof(NSVGgradientLink)); |
| 802 | if (grad == NULL) return NULL; |
| 803 | strncpy(grad->id, id, 63); |
| 804 | grad->id[63] = '\0'; |
| 805 | return grad; |
| 806 | } |
| 807 | |
| 808 | static void nsvg__getLocalBounds(float* bounds, NSVGshape *shape); //, float* xform); |
| 809 |
no test coverage detected