fltk/nanosvg
Albrecht Schlosser a6927779c3 Update nanosvg/README.txt to reflect recent changes 2023-12-02 23:42:16 +01:00
..
README.txt Update nanosvg/README.txt to reflect recent changes 2023-12-02 23:42:16 +01:00
nanosvg.h Update bundled nanosvg library to current upstream version 2022-12-22 01:13:45 +01:00
nanosvgrast.h Upgrade bundled nanosvg library to latest upstream commit 2023-12-02 23:32:17 +01:00

README.txt

README for the nanosvg library bundled with FLTK
------------------------------------------------

This is a header-only library to display SVG images.

This bundled library was modified for optimal use in the FLTK library.


The original library can be found here:

  https://github.com/memononen/nanosvg


The modified library was forked and can be found here:

  https://github.com/fltk/nanosvg


For more information see documentation/src/bundled-libs.dox.


Changes in the FLTK fork, branch 'fltk':
-----------------------------------------

See current branch 'fltk' and tag 'fltk_2023-12-02' in FLTK's
nanosvg fork (link above).

FLTK specific commits can be found with git similar to the following
command. Note that Git hashes will change over time whenever the
FLTK specific changes are rebased on top of 'upstream/master'.


$ git log upstream/master..fltk
commit 7aeda550a84c15680f7e55867896c3906299dffb (HEAD -> fltk, tag: fltk_2023-12-02, origin/fltk, origin/HEAD)
Author: AlbrechtS <AlbrechtS.svn@fltk.example.org>
Date:   Sun Feb 4 23:47:38 2018 +0100

    Modify rasterizer to support non-square X,Y axes scaling.

    Add new function nsvgRasterizeXY() similar to nsvgRasterize() but with
    separate scaling factors for x-axis and y-axis.

commit b9a21ceb59590e0325acbf290598cbdf490501d6
Author: AlbrechtS <AlbrechtS.svn@fltk.example.org>
Date:   Sun Feb 4 23:43:30 2018 +0100

    Fix Visual Studio compilation error (missing long long).

    Change 'long long intPart' to 'double intPart' and replace
    strtoll() with _strtoi64() when built with Visual Studio.