@simonklee/opentui-tex-native-source 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +674 -0
- package/LICENSE-PROJECT +21 -0
- package/README.md +7 -0
- package/build.zig +112 -0
- package/build.zig.zon +12 -0
- package/native/lib.zig +280 -0
- package/native/nanosvg.c +4 -0
- package/native/vendor/.bootstrap-v5 +1 -0
- package/native/vendor/LICENSE-NANOSVG +18 -0
- package/native/vendor/microtex/.clang-format +26 -0
- package/native/vendor/microtex/.github/workflows/ubuntu.yml +92 -0
- package/native/vendor/microtex/.github/workflows/windows-gdi.yml +34 -0
- package/native/vendor/microtex/.github/workflows/windows-qt.yml +52 -0
- package/native/vendor/microtex/CMakeLists.txt +110 -0
- package/native/vendor/microtex/LICENSE +21 -0
- package/native/vendor/microtex/MicroTeXInstall.cmake +42 -0
- package/native/vendor/microtex/README.md +600 -0
- package/native/vendor/microtex/build.zig +209 -0
- package/native/vendor/microtex/clatexmath.wrap +6 -0
- package/native/vendor/microtex/doc/meson.build +38 -0
- package/native/vendor/microtex/doc/microtex-doc.toml.in +47 -0
- package/native/vendor/microtex/doc/microtex.svg +39 -0
- package/native/vendor/microtex/doc/urlmap.js +6 -0
- package/native/vendor/microtex/example/gtk/CMakeLists.txt +68 -0
- package/native/vendor/microtex/example/gtk/gtk_main.c +170 -0
- package/native/vendor/microtex/example/gtk/isamples.cpp +21 -0
- package/native/vendor/microtex/example/gtk/isamples.h +15 -0
- package/native/vendor/microtex/example/gtk/meson.build +27 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.gresource.xml +6 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.ui +117 -0
- package/native/vendor/microtex/example/gtkmm/CMakeLists.txt +19 -0
- package/native/vendor/microtex/example/gtkmm/gtkmm_main.cpp +531 -0
- package/native/vendor/microtex/example/gtkmm/meson.build +19 -0
- package/native/vendor/microtex/example/memcheck/CMakeLists.txt +12 -0
- package/native/vendor/microtex/example/memcheck/mem_check_main.cpp +154 -0
- package/native/vendor/microtex/example/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/example/qt/meson.build +25 -0
- package/native/vendor/microtex/example/qt/qt_main.cpp +70 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.cpp +107 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.h +40 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.cpp +149 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.h +48 -0
- package/native/vendor/microtex/example/qt/qt_tex_render.h +15 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.cpp +56 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.h +31 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.cpp +62 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.h +31 -0
- package/native/vendor/microtex/example/qtpng/CMakeLists.txt +11 -0
- package/native/vendor/microtex/example/qtpng/latex2png.cpp +115 -0
- package/native/vendor/microtex/example/samples/samples.cpp +52 -0
- package/native/vendor/microtex/example/samples/samples.h +32 -0
- package/native/vendor/microtex/example/win32/CMakeLists.txt +15 -0
- package/native/vendor/microtex/example/win32/meson.build +18 -0
- package/native/vendor/microtex/example/win32/win32_main.cpp +375 -0
- package/native/vendor/microtex/githooks/pre-commit +19 -0
- package/native/vendor/microtex/githooks/pre-push +103 -0
- package/native/vendor/microtex/lib/CMakeLists.txt +234 -0
- package/native/vendor/microtex/lib/atom/atom.cpp +14 -0
- package/native/vendor/microtex/lib/atom/atom.h +96 -0
- package/native/vendor/microtex/lib/atom/atom_accent.cpp +115 -0
- package/native/vendor/microtex/lib/atom/atom_accent.h +53 -0
- package/native/vendor/microtex/lib/atom/atom_basic.cpp +146 -0
- package/native/vendor/microtex/lib/atom/atom_basic.h +273 -0
- package/native/vendor/microtex/lib/atom/atom_box.cpp +41 -0
- package/native/vendor/microtex/lib/atom/atom_box.h +70 -0
- package/native/vendor/microtex/lib/atom/atom_char.cpp +99 -0
- package/native/vendor/microtex/lib/atom/atom_char.h +147 -0
- package/native/vendor/microtex/lib/atom/atom_delim.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_delim.h +58 -0
- package/native/vendor/microtex/lib/atom/atom_fence.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_fence.h +56 -0
- package/native/vendor/microtex/lib/atom/atom_font.cpp +20 -0
- package/native/vendor/microtex/lib/atom/atom_font.h +49 -0
- package/native/vendor/microtex/lib/atom/atom_frac.cpp +101 -0
- package/native/vendor/microtex/lib/atom/atom_frac.h +42 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.cpp +756 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.h +268 -0
- package/native/vendor/microtex/lib/atom/atom_misc.cpp +230 -0
- package/native/vendor/microtex/lib/atom/atom_misc.h +200 -0
- package/native/vendor/microtex/lib/atom/atom_operator.cpp +51 -0
- package/native/vendor/microtex/lib/atom/atom_operator.h +41 -0
- package/native/vendor/microtex/lib/atom/atom_root.cpp +61 -0
- package/native/vendor/microtex/lib/atom/atom_root.h +27 -0
- package/native/vendor/microtex/lib/atom/atom_row.cpp +334 -0
- package/native/vendor/microtex/lib/atom/atom_row.h +176 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.cpp +182 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.h +52 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.cpp +92 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.h +24 -0
- package/native/vendor/microtex/lib/atom/atom_space.cpp +22 -0
- package/native/vendor/microtex/lib/atom/atom_space.h +38 -0
- package/native/vendor/microtex/lib/atom/atom_stack.cpp +117 -0
- package/native/vendor/microtex/lib/atom/atom_stack.h +103 -0
- package/native/vendor/microtex/lib/atom/atom_text.cpp +17 -0
- package/native/vendor/microtex/lib/atom/atom_text.h +33 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.cpp +96 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.h +47 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.cpp +66 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.h +37 -0
- package/native/vendor/microtex/lib/atom/colors_def.cpp +157 -0
- package/native/vendor/microtex/lib/atom/meson.build +50 -0
- package/native/vendor/microtex/lib/box/box.cpp +49 -0
- package/native/vendor/microtex/lib/box/box.h +184 -0
- package/native/vendor/microtex/lib/box/box_factory.cpp +162 -0
- package/native/vendor/microtex/lib/box/box_factory.h +24 -0
- package/native/vendor/microtex/lib/box/box_group.cpp +503 -0
- package/native/vendor/microtex/lib/box/box_group.h +285 -0
- package/native/vendor/microtex/lib/box/box_single.cpp +179 -0
- package/native/vendor/microtex/lib/box/box_single.h +157 -0
- package/native/vendor/microtex/lib/box/meson.build +15 -0
- package/native/vendor/microtex/lib/core/debug_config.cpp +3 -0
- package/native/vendor/microtex/lib/core/debug_config.h +24 -0
- package/native/vendor/microtex/lib/core/formula.cpp +180 -0
- package/native/vendor/microtex/lib/core/formula.h +137 -0
- package/native/vendor/microtex/lib/core/formula_def.cpp +167 -0
- package/native/vendor/microtex/lib/core/glue.cpp +108 -0
- package/native/vendor/microtex/lib/core/glue.h +55 -0
- package/native/vendor/microtex/lib/core/localized_num.cpp +51 -0
- package/native/vendor/microtex/lib/core/meson.build +19 -0
- package/native/vendor/microtex/lib/core/parser.cpp +874 -0
- package/native/vendor/microtex/lib/core/parser.h +306 -0
- package/native/vendor/microtex/lib/core/split.cpp +185 -0
- package/native/vendor/microtex/lib/core/split.h +40 -0
- package/native/vendor/microtex/lib/env/env.cpp +141 -0
- package/native/vendor/microtex/lib/env/env.h +221 -0
- package/native/vendor/microtex/lib/env/meson.build +11 -0
- package/native/vendor/microtex/lib/env/units.cpp +109 -0
- package/native/vendor/microtex/lib/env/units.h +61 -0
- package/native/vendor/microtex/lib/graphic/font_style.cpp +63 -0
- package/native/vendor/microtex/lib/graphic/font_style.h +61 -0
- package/native/vendor/microtex/lib/graphic/graphic.cpp +38 -0
- package/native/vendor/microtex/lib/graphic/graphic.h +314 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.cpp +44 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.h +131 -0
- package/native/vendor/microtex/lib/graphic/meson.build +13 -0
- package/native/vendor/microtex/lib/macro/macro.cpp +143 -0
- package/native/vendor/microtex/lib/macro/macro.h +155 -0
- package/native/vendor/microtex/lib/macro/macro_accent.cpp +50 -0
- package/native/vendor/microtex/lib/macro/macro_accent.h +61 -0
- package/native/vendor/microtex/lib/macro/macro_boxes.h +68 -0
- package/native/vendor/microtex/lib/macro/macro_colors.cpp +42 -0
- package/native/vendor/microtex/lib/macro/macro_colors.h +42 -0
- package/native/vendor/microtex/lib/macro/macro_decl.h +16 -0
- package/native/vendor/microtex/lib/macro/macro_def.cpp +418 -0
- package/native/vendor/microtex/lib/macro/macro_delims.cpp +56 -0
- package/native/vendor/microtex/lib/macro/macro_delims.h +73 -0
- package/native/vendor/microtex/lib/macro/macro_env.h +212 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.cpp +53 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.h +78 -0
- package/native/vendor/microtex/lib/macro/macro_frac.cpp +138 -0
- package/native/vendor/microtex/lib/macro/macro_frac.h +50 -0
- package/native/vendor/microtex/lib/macro/macro_misc.cpp +211 -0
- package/native/vendor/microtex/lib/macro/macro_misc.h +217 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.cpp +32 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_sizes.h +110 -0
- package/native/vendor/microtex/lib/macro/macro_space.cpp +31 -0
- package/native/vendor/microtex/lib/macro/macro_space.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_styles.cpp +45 -0
- package/native/vendor/microtex/lib/macro/macro_styles.h +22 -0
- package/native/vendor/microtex/lib/macro/macro_types.h +48 -0
- package/native/vendor/microtex/lib/macro/meson.build +33 -0
- package/native/vendor/microtex/lib/meson.build +102 -0
- package/native/vendor/microtex/lib/microtex.cpp +208 -0
- package/native/vendor/microtex/lib/microtex.h +225 -0
- package/native/vendor/microtex/lib/microtexConfig.cmake.in +2 -0
- package/native/vendor/microtex/lib/microtexapi.h +22 -0
- package/native/vendor/microtex/lib/microtexconfig.h.in +7 -0
- package/native/vendor/microtex/lib/microtexexport.h +31 -0
- package/native/vendor/microtex/lib/otf/clm.cpp +405 -0
- package/native/vendor/microtex/lib/otf/clm.h +61 -0
- package/native/vendor/microtex/lib/otf/fontsense.cpp +191 -0
- package/native/vendor/microtex/lib/otf/fontsense.h +20 -0
- package/native/vendor/microtex/lib/otf/glyph.cpp +53 -0
- package/native/vendor/microtex/lib/otf/glyph.h +384 -0
- package/native/vendor/microtex/lib/otf/math_consts.h +154 -0
- package/native/vendor/microtex/lib/otf/meson.build +18 -0
- package/native/vendor/microtex/lib/otf/otf.cpp +84 -0
- package/native/vendor/microtex/lib/otf/otf.h +177 -0
- package/native/vendor/microtex/lib/otf/otfconfig.h +32 -0
- package/native/vendor/microtex/lib/otf/path.cpp +187 -0
- package/native/vendor/microtex/lib/otf/path.h +120 -0
- package/native/vendor/microtex/lib/render/builder.cpp +68 -0
- package/native/vendor/microtex/lib/render/builder.h +73 -0
- package/native/vendor/microtex/lib/render/meson.build +11 -0
- package/native/vendor/microtex/lib/render/render.cpp +136 -0
- package/native/vendor/microtex/lib/render/render.h +59 -0
- package/native/vendor/microtex/lib/unimath/font_meta.h +22 -0
- package/native/vendor/microtex/lib/unimath/font_src.cpp +21 -0
- package/native/vendor/microtex/lib/unimath/font_src.h +61 -0
- package/native/vendor/microtex/lib/unimath/math_type.cpp +318 -0
- package/native/vendor/microtex/lib/unimath/math_type.h +105 -0
- package/native/vendor/microtex/lib/unimath/meson.build +18 -0
- package/native/vendor/microtex/lib/unimath/uni_char.cpp +121 -0
- package/native/vendor/microtex/lib/unimath/uni_char.h +109 -0
- package/native/vendor/microtex/lib/unimath/uni_font.cpp +248 -0
- package/native/vendor/microtex/lib/unimath/uni_font.h +139 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.cpp +2929 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.h +31 -0
- package/native/vendor/microtex/lib/utils/dict_tree.h +68 -0
- package/native/vendor/microtex/lib/utils/exceptions.h +61 -0
- package/native/vendor/microtex/lib/utils/log.h +34 -0
- package/native/vendor/microtex/lib/utils/meson.build +18 -0
- package/native/vendor/microtex/lib/utils/nums.h +24 -0
- package/native/vendor/microtex/lib/utils/string_utils.cpp +85 -0
- package/native/vendor/microtex/lib/utils/string_utils.h +130 -0
- package/native/vendor/microtex/lib/utils/types.h +152 -0
- package/native/vendor/microtex/lib/utils/utf.cpp +115 -0
- package/native/vendor/microtex/lib/utils/utf.h +58 -0
- package/native/vendor/microtex/lib/utils/utils.cpp +40 -0
- package/native/vendor/microtex/lib/utils/utils.h +88 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.cpp +46 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.h +70 -0
- package/native/vendor/microtex/lib/wrapper/callback.cpp +10 -0
- package/native/vendor/microtex/lib/wrapper/callback.h +72 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.cpp +206 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.h +305 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.cpp +211 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.h +159 -0
- package/native/vendor/microtex/lib/wrapper/meson.build +22 -0
- package/native/vendor/microtex/meson.build +75 -0
- package/native/vendor/microtex/meson_options.txt +29 -0
- package/native/vendor/microtex/platform/cairo/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.cpp +384 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.h +119 -0
- package/native/vendor/microtex/platform/cairo/meson.build +47 -0
- package/native/vendor/microtex/platform/cairo/microtex-cairoConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/CHANGELOG.md +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/LICENSE +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/README.md +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/analysis_options.yaml +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/build.gradle +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/settings.gradle +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/AndroidManifest.xml +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/kotlin/io/nano/microtex/microtex/MicrotexPlugin.kt +35 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/README.md +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/analysis_options.yaml +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/build.gradle +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/debug/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/AndroidManifest.xml +34 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/kotlin/io/nano/microtex/microtex_example/MainActivity.kt +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values-night/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/profile/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/build.gradle +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle.properties +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/settings.gradle +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/AppFrameworkInfo.plist +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile +41 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/AppDelegate.swift +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/Main.storyboard +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Info.plist +49 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Runner-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.pbxproj +549 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/main.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_in_one.dart +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_screen.dart +208 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/convert_spans.dart +63 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/string_ext.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/cmp.dart +118 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/draggable.dart +75 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/rich.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/split.dart +72 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_highlight_controller.dart +66 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_input_controller.dart +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/CMakeLists.txt +116 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/CMakeLists.txt +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.cc +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/main.cc +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.cc +104 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.h +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/GeneratedPluginRegistrant.swift +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile +40 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/AppDelegate.swift +9 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Base.lproj/MainMenu.xib +343 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/AppInfo.xcconfig +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Warnings.xcconfig +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/DebugProfile.entitlements +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Info.plist +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/MainFlutterWindow.swift +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Release.entitlements +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.pbxproj +633 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.lock +191 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.yaml +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/test/widget_test.dart +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/CMakeLists.txt +95 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/CMakeLists.txt +103 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.cc +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/CMakeLists.txt +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/Runner.rc +121 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.cpp +61 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.h +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/main.cpp +43 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resource.h +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resources/app_icon.ico +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/runner.exe.manifest +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.cpp +64 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.h +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.cpp +245 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.h +98 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Assets/.gitkeep +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.m +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/SwiftMicrotexPlugin.swift +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/microtex.podspec +27 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/microtex.dart +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bindings.dart +218 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bounds.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/context.dart +205 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontdesc.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontmeta.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/pathcache.dart +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/render.dart +291 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/texstyle.dart +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/textlayout.dart +93 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/widget.dart +163 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/CMakeLists.txt +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/include/microtex/microtex_plugin.h +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/microtex_plugin.cc +70 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/MicrotexPlugin.swift +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/microtex-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/microtex.podspec +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/CMakeLists.txt +44 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/builddarwin.sh +108 -0
- package/native/vendor/microtex/platform/flutter/microtex/pubspec.yaml +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/test/microtex_test.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/CMakeLists.txt +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/include/microtex/microtex_plugin.h +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/microtex_plugin.cpp +82 -0
- package/native/vendor/microtex/platform/gdi_win/CMakeLists.txt +20 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.cpp +352 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.h +137 -0
- package/native/vendor/microtex/platform/gdi_win/meson.build +39 -0
- package/native/vendor/microtex/platform/gtk/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/gtk/meson.build +65 -0
- package/native/vendor/microtex/platform/gtk/microtex-gtkConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.cpp +708 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.h +72 -0
- package/native/vendor/microtex/platform/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.cpp +355 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.h +116 -0
- package/native/vendor/microtex/platform/qt/meson.build +38 -0
- package/native/vendor/microtex/platform/qt/microtex-qtConfig.cmake.in +7 -0
- package/native/vendor/microtex/platform/skia/CMakeLists.txt +46 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.cpp +306 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.h +125 -0
- package/native/vendor/microtex/platform/skia/microtex-skiaConfig.cmake.in +6 -0
- package/native/vendor/microtex/platform/wasm/CMakeLists.txt +38 -0
- package/native/vendor/microtex/platform/wasm/emscripten.cross +31 -0
- package/native/vendor/microtex/platform/wasm/main.cpp +15 -0
- package/native/vendor/microtex/platform/wasm/meson.build +8 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example-meson.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib-meson.sh +28 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib.sh +31 -0
- package/native/vendor/microtex/platform/wasm/web/.babelrc +10 -0
- package/native/vendor/microtex/platform/wasm/web/example/examples.js +43 -0
- package/native/vendor/microtex/platform/wasm/web/example/hello.js +31 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.html +55 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.js +243 -0
- package/native/vendor/microtex/platform/wasm/web/example/styles.css +86 -0
- package/native/vendor/microtex/platform/wasm/web/example/utils.js +47 -0
- package/native/vendor/microtex/platform/wasm/web/lib/context.js +271 -0
- package/native/vendor/microtex/platform/wasm/web/lib/index.js +10 -0
- package/native/vendor/microtex/platform/wasm/web/lib/render.js +293 -0
- package/native/vendor/microtex/platform/wasm/web/lib/runtime.js +14 -0
- package/native/vendor/microtex/platform/wasm/web/lib/svg.js +237 -0
- package/native/vendor/microtex/platform/wasm/web/lib/textlayout.js +88 -0
- package/native/vendor/microtex/platform/wasm/web/package-lock.json +5931 -0
- package/native/vendor/microtex/platform/wasm/web/package.json +45 -0
- package/native/vendor/microtex/platform/wasm/web/publish-example.sh +17 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.example.js +24 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.lib.js +16 -0
- package/native/vendor/microtex/prebuilt/otf2clm.py +807 -0
- package/native/vendor/microtex/prebuilt/otf2clm.sh +9 -0
- package/native/vendor/microtex/prebuilt/preclms.sh +17 -0
- package/native/vendor/microtex/readme/example_bw_false.svg +680 -0
- package/native/vendor/microtex/readme/example_bw_true.svg +680 -0
- package/native/vendor/microtex/readme/example_cjk_trying.svg +54 -0
- package/native/vendor/microtex/readme/example_custom_symbols.svg +92 -0
- package/native/vendor/microtex/readme/example_debug.svg +764 -0
- package/native/vendor/microtex/readme/example_emoji.svg +199 -0
- package/native/vendor/microtex/readme/example_have_log.svg +79 -0
- package/native/vendor/microtex/readme/example_keep_trying.svg +101 -0
- package/native/vendor/microtex/readme/example_logos.svg +50 -0
- package/native/vendor/microtex/readme/example_ubuntu.png +0 -0
- package/native/vendor/microtex/readme/example_windows.png +0 -0
- package/native/vendor/microtex/readme/samples/sample_0.svg +665 -0
- package/native/vendor/microtex/readme/samples/sample_1.svg +1259 -0
- package/native/vendor/microtex/readme/samples/sample_10.svg +333 -0
- package/native/vendor/microtex/readme/samples/sample_11.svg +306 -0
- package/native/vendor/microtex/readme/samples/sample_2.svg +2461 -0
- package/native/vendor/microtex/readme/samples/sample_3.svg +2653 -0
- package/native/vendor/microtex/readme/samples/sample_4.svg +554 -0
- package/native/vendor/microtex/readme/samples/sample_5.svg +247 -0
- package/native/vendor/microtex/readme/samples/sample_6.svg +1082 -0
- package/native/vendor/microtex/readme/samples/sample_7.svg +518 -0
- package/native/vendor/microtex/readme/samples/sample_8.svg +529 -0
- package/native/vendor/microtex/readme/samples/sample_9.svg +1702 -0
- package/native/vendor/microtex/readme/samples.md +301 -0
- package/native/vendor/microtex/readme/tex_logo.svg +19 -0
- package/native/vendor/microtex/res/EXAMPLE.txt +25 -0
- package/native/vendor/microtex/res/SAMPLES.tex +946 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.otf +0 -0
- package/native/vendor/microtex/res/firamath/README.md +42 -0
- package/native/vendor/microtex/res/lm-math/README +92 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm1 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm2 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.otf +0 -0
- package/native/vendor/microtex/res/tex-gyre/README-TeX-Gyre-DejaVu-Math.txt +82 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm1 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm2 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.otf +0 -0
- package/native/vendor/microtex/res/xits/FONTLOG.txt +246 -0
- package/native/vendor/microtex/res/xits/OFL.txt +98 -0
- package/native/vendor/microtex/res/xits/README.txt +15 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.otf +0 -0
- package/native/vendor/microtex/test/clm/meson.build +10 -0
- package/native/vendor/microtex/test/clm/test_clm.cpp +140 -0
- package/native/vendor/microtex/test/env/meson.build +10 -0
- package/native/vendor/microtex/test/env/test_env.cpp +100 -0
- package/native/vendor/microtex/test/fuzzer/afl.native +20 -0
- package/native/vendor/microtex/test/fuzzer/fuzz.sh +135 -0
- package/native/vendor/microtex/test/fuzzer/fuzzer.cpp +61 -0
- package/native/vendor/microtex/test/fuzzer/generateSeed.java +33 -0
- package/native/vendor/microtex/test/fuzzer/meson.build +9 -0
- package/native/vendor/microtex/test/fuzzer/microtex.dict +3708 -0
- package/native/vendor/microtex/test/fuzzer/platform_none.cpp +100 -0
- package/native/vendor/microtex/test/has_filesystem.cpp +8 -0
- package/native/vendor/microtex/test/meson.build +6 -0
- package/native/vendor/nanosvg.h +3278 -0
- package/native/vendor/nanosvgrast.h +1472 -0
- package/native/vendor/zigtex/.github/assets/example.svg +27 -0
- package/native/vendor/zigtex/LICENSE +674 -0
- package/native/vendor/zigtex/README.md +52 -0
- package/native/vendor/zigtex/build.zig +52 -0
- package/native/vendor/zigtex/build.zig.zon +16 -0
- package/native/vendor/zigtex/fonts/latinmodern-math.clm2 +0 -0
- package/native/vendor/zigtex/src/main.zig +22 -0
- package/native/vendor/zigtex/src/root.zig +124 -0
- package/native/vendor/zigtex/src/svg.zig +273 -0
- package/native/vendor/zigtex/src/tex.zig +383 -0
- package/native/zigtex-0.16.patch +35 -0
- package/package.json +27 -0
- package/scripts/bootstrap-native +89 -0
|
@@ -0,0 +1,1472 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2013-14 Mikko Mononen memon@inside.org
|
|
3
|
+
*
|
|
4
|
+
* This software is provided 'as-is', without any express or implied
|
|
5
|
+
* warranty. In no event will the authors be held liable for any damages
|
|
6
|
+
* arising from the use of this software.
|
|
7
|
+
*
|
|
8
|
+
* Permission is granted to anyone to use this software for any purpose,
|
|
9
|
+
* including commercial applications, and to alter it and redistribute it
|
|
10
|
+
* freely, subject to the following restrictions:
|
|
11
|
+
*
|
|
12
|
+
* 1. The origin of this software must not be misrepresented; you must not
|
|
13
|
+
* claim that you wrote the original software. If you use this software
|
|
14
|
+
* in a product, an acknowledgment in the product documentation would be
|
|
15
|
+
* appreciated but is not required.
|
|
16
|
+
* 2. Altered source versions must be plainly marked as such, and must not be
|
|
17
|
+
* misrepresented as being the original software.
|
|
18
|
+
* 3. This notice may not be removed or altered from any source distribution.
|
|
19
|
+
*
|
|
20
|
+
* The polygon rasterization is heavily based on stb_truetype rasterizer
|
|
21
|
+
* by Sean Barrett - http://nothings.org/
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
#ifndef NANOSVGRAST_H
|
|
26
|
+
#define NANOSVGRAST_H
|
|
27
|
+
|
|
28
|
+
#include "nanosvg.h"
|
|
29
|
+
|
|
30
|
+
#ifndef NANOSVGRAST_CPLUSPLUS
|
|
31
|
+
#ifdef __cplusplus
|
|
32
|
+
extern "C" {
|
|
33
|
+
#endif
|
|
34
|
+
#endif
|
|
35
|
+
|
|
36
|
+
typedef struct NSVGrasterizer NSVGrasterizer;
|
|
37
|
+
|
|
38
|
+
/* Example Usage:
|
|
39
|
+
// Load SVG
|
|
40
|
+
NSVGimage* image;
|
|
41
|
+
image = nsvgParseFromFile("test.svg", "px", 96);
|
|
42
|
+
|
|
43
|
+
// Create rasterizer (can be used to render multiple images).
|
|
44
|
+
struct NSVGrasterizer* rast = nsvgCreateRasterizer();
|
|
45
|
+
// Allocate memory for image
|
|
46
|
+
unsigned char* img = malloc(w*h*4);
|
|
47
|
+
// Rasterize
|
|
48
|
+
nsvgRasterize(rast, image, 0,0,1, img, w, h, w*4);
|
|
49
|
+
*/
|
|
50
|
+
|
|
51
|
+
// Allocated rasterizer context.
|
|
52
|
+
NSVGrasterizer* nsvgCreateRasterizer(void);
|
|
53
|
+
|
|
54
|
+
// Rasterizes SVG image, returns RGBA image (non-premultiplied alpha)
|
|
55
|
+
// r - pointer to rasterizer context
|
|
56
|
+
// image - pointer to image to rasterize
|
|
57
|
+
// tx,ty - image offset (applied after scaling)
|
|
58
|
+
// scale - image scale
|
|
59
|
+
// dst - pointer to destination image data, 4 bytes per pixel (RGBA)
|
|
60
|
+
// w - width of the image to render
|
|
61
|
+
// h - height of the image to render
|
|
62
|
+
// stride - number of bytes per scaleline in the destination buffer
|
|
63
|
+
void nsvgRasterize(NSVGrasterizer* r,
|
|
64
|
+
NSVGimage* image, float tx, float ty, float scale,
|
|
65
|
+
unsigned char* dst, int w, int h, int stride);
|
|
66
|
+
|
|
67
|
+
// Deletes rasterizer context.
|
|
68
|
+
void nsvgDeleteRasterizer(NSVGrasterizer*);
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
#ifndef NANOSVGRAST_CPLUSPLUS
|
|
72
|
+
#ifdef __cplusplus
|
|
73
|
+
}
|
|
74
|
+
#endif
|
|
75
|
+
#endif
|
|
76
|
+
|
|
77
|
+
#ifdef NANOSVGRAST_IMPLEMENTATION
|
|
78
|
+
|
|
79
|
+
#include <math.h>
|
|
80
|
+
#include <stdlib.h>
|
|
81
|
+
#include <string.h>
|
|
82
|
+
|
|
83
|
+
#define NSVG__SUBSAMPLES 5
|
|
84
|
+
#define NSVG__FIXSHIFT 10
|
|
85
|
+
#define NSVG__FIX (1 << NSVG__FIXSHIFT)
|
|
86
|
+
#define NSVG__FIXMASK (NSVG__FIX-1)
|
|
87
|
+
#define NSVG__MEMPAGE_SIZE 1024
|
|
88
|
+
|
|
89
|
+
typedef struct NSVGedge {
|
|
90
|
+
float x0,y0, x1,y1;
|
|
91
|
+
int dir;
|
|
92
|
+
struct NSVGedge* next;
|
|
93
|
+
} NSVGedge;
|
|
94
|
+
|
|
95
|
+
typedef struct NSVGpoint {
|
|
96
|
+
float x, y;
|
|
97
|
+
float dx, dy;
|
|
98
|
+
float len;
|
|
99
|
+
float dmx, dmy;
|
|
100
|
+
unsigned char flags;
|
|
101
|
+
} NSVGpoint;
|
|
102
|
+
|
|
103
|
+
typedef struct NSVGactiveEdge {
|
|
104
|
+
int x,dx;
|
|
105
|
+
float ey;
|
|
106
|
+
int dir;
|
|
107
|
+
struct NSVGactiveEdge *next;
|
|
108
|
+
} NSVGactiveEdge;
|
|
109
|
+
|
|
110
|
+
typedef struct NSVGmemPage {
|
|
111
|
+
unsigned char mem[NSVG__MEMPAGE_SIZE];
|
|
112
|
+
int size;
|
|
113
|
+
struct NSVGmemPage* next;
|
|
114
|
+
} NSVGmemPage;
|
|
115
|
+
|
|
116
|
+
typedef struct NSVGcachedPaint {
|
|
117
|
+
signed char type;
|
|
118
|
+
char spread;
|
|
119
|
+
float xform[6];
|
|
120
|
+
unsigned int colors[256];
|
|
121
|
+
} NSVGcachedPaint;
|
|
122
|
+
|
|
123
|
+
struct NSVGrasterizer
|
|
124
|
+
{
|
|
125
|
+
float px, py;
|
|
126
|
+
|
|
127
|
+
float tessTol;
|
|
128
|
+
float distTol;
|
|
129
|
+
|
|
130
|
+
NSVGedge* edges;
|
|
131
|
+
int nedges;
|
|
132
|
+
int cedges;
|
|
133
|
+
|
|
134
|
+
NSVGpoint* points;
|
|
135
|
+
int npoints;
|
|
136
|
+
int cpoints;
|
|
137
|
+
|
|
138
|
+
NSVGpoint* points2;
|
|
139
|
+
int npoints2;
|
|
140
|
+
int cpoints2;
|
|
141
|
+
|
|
142
|
+
NSVGactiveEdge* freelist;
|
|
143
|
+
NSVGmemPage* pages;
|
|
144
|
+
NSVGmemPage* curpage;
|
|
145
|
+
|
|
146
|
+
unsigned char* scanline;
|
|
147
|
+
int cscanline;
|
|
148
|
+
|
|
149
|
+
unsigned char* bitmap;
|
|
150
|
+
int width, height, stride;
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
NSVGrasterizer* nsvgCreateRasterizer(void)
|
|
154
|
+
{
|
|
155
|
+
NSVGrasterizer* r = (NSVGrasterizer*)malloc(sizeof(NSVGrasterizer));
|
|
156
|
+
if (r == NULL) goto error;
|
|
157
|
+
memset(r, 0, sizeof(NSVGrasterizer));
|
|
158
|
+
|
|
159
|
+
r->tessTol = 0.25f;
|
|
160
|
+
r->distTol = 0.01f;
|
|
161
|
+
|
|
162
|
+
return r;
|
|
163
|
+
|
|
164
|
+
error:
|
|
165
|
+
nsvgDeleteRasterizer(r);
|
|
166
|
+
return NULL;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
void nsvgDeleteRasterizer(NSVGrasterizer* r)
|
|
170
|
+
{
|
|
171
|
+
NSVGmemPage* p;
|
|
172
|
+
|
|
173
|
+
if (r == NULL) return;
|
|
174
|
+
|
|
175
|
+
p = r->pages;
|
|
176
|
+
while (p != NULL) {
|
|
177
|
+
NSVGmemPage* next = p->next;
|
|
178
|
+
free(p);
|
|
179
|
+
p = next;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
if (r->edges) free(r->edges);
|
|
183
|
+
if (r->points) free(r->points);
|
|
184
|
+
if (r->points2) free(r->points2);
|
|
185
|
+
if (r->scanline) free(r->scanline);
|
|
186
|
+
|
|
187
|
+
free(r);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
static NSVGmemPage* nsvg__nextPage(NSVGrasterizer* r, NSVGmemPage* cur)
|
|
191
|
+
{
|
|
192
|
+
NSVGmemPage *newp;
|
|
193
|
+
|
|
194
|
+
// If using existing chain, return the next page in chain
|
|
195
|
+
if (cur != NULL && cur->next != NULL) {
|
|
196
|
+
return cur->next;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
// Alloc new page
|
|
200
|
+
newp = (NSVGmemPage*)malloc(sizeof(NSVGmemPage));
|
|
201
|
+
if (newp == NULL) return NULL;
|
|
202
|
+
memset(newp, 0, sizeof(NSVGmemPage));
|
|
203
|
+
|
|
204
|
+
// Add to linked list
|
|
205
|
+
if (cur != NULL)
|
|
206
|
+
cur->next = newp;
|
|
207
|
+
else
|
|
208
|
+
r->pages = newp;
|
|
209
|
+
|
|
210
|
+
return newp;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
static void nsvg__resetPool(NSVGrasterizer* r)
|
|
214
|
+
{
|
|
215
|
+
NSVGmemPage* p = r->pages;
|
|
216
|
+
while (p != NULL) {
|
|
217
|
+
p->size = 0;
|
|
218
|
+
p = p->next;
|
|
219
|
+
}
|
|
220
|
+
r->curpage = r->pages;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
static unsigned char* nsvg__alloc(NSVGrasterizer* r, int size)
|
|
224
|
+
{
|
|
225
|
+
unsigned char* buf;
|
|
226
|
+
if (size > NSVG__MEMPAGE_SIZE) return NULL;
|
|
227
|
+
if (r->curpage == NULL || r->curpage->size+size > NSVG__MEMPAGE_SIZE) {
|
|
228
|
+
r->curpage = nsvg__nextPage(r, r->curpage);
|
|
229
|
+
}
|
|
230
|
+
buf = &r->curpage->mem[r->curpage->size];
|
|
231
|
+
r->curpage->size += size;
|
|
232
|
+
return buf;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
static int nsvg__ptEquals(float x1, float y1, float x2, float y2, float tol)
|
|
236
|
+
{
|
|
237
|
+
float dx = x2 - x1;
|
|
238
|
+
float dy = y2 - y1;
|
|
239
|
+
return dx*dx + dy*dy < tol*tol;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
static void nsvg__addPathPoint(NSVGrasterizer* r, float x, float y, int flags)
|
|
243
|
+
{
|
|
244
|
+
NSVGpoint* pt;
|
|
245
|
+
|
|
246
|
+
if (r->npoints > 0) {
|
|
247
|
+
pt = &r->points[r->npoints-1];
|
|
248
|
+
if (nsvg__ptEquals(pt->x,pt->y, x,y, r->distTol)) {
|
|
249
|
+
pt->flags = (unsigned char)(pt->flags | flags);
|
|
250
|
+
return;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
if (r->npoints+1 > r->cpoints) {
|
|
255
|
+
r->cpoints = r->cpoints > 0 ? r->cpoints * 2 : 64;
|
|
256
|
+
r->points = (NSVGpoint*)realloc(r->points, sizeof(NSVGpoint) * r->cpoints);
|
|
257
|
+
if (r->points == NULL) return;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
pt = &r->points[r->npoints];
|
|
261
|
+
pt->x = x;
|
|
262
|
+
pt->y = y;
|
|
263
|
+
pt->flags = (unsigned char)flags;
|
|
264
|
+
r->npoints++;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
static void nsvg__appendPathPoint(NSVGrasterizer* r, NSVGpoint pt)
|
|
268
|
+
{
|
|
269
|
+
if (r->npoints+1 > r->cpoints) {
|
|
270
|
+
r->cpoints = r->cpoints > 0 ? r->cpoints * 2 : 64;
|
|
271
|
+
r->points = (NSVGpoint*)realloc(r->points, sizeof(NSVGpoint) * r->cpoints);
|
|
272
|
+
if (r->points == NULL) return;
|
|
273
|
+
}
|
|
274
|
+
r->points[r->npoints] = pt;
|
|
275
|
+
r->npoints++;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
static void nsvg__duplicatePoints(NSVGrasterizer* r)
|
|
279
|
+
{
|
|
280
|
+
if (r->npoints > r->cpoints2) {
|
|
281
|
+
r->cpoints2 = r->npoints;
|
|
282
|
+
r->points2 = (NSVGpoint*)realloc(r->points2, sizeof(NSVGpoint) * r->cpoints2);
|
|
283
|
+
if (r->points2 == NULL) return;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
memcpy(r->points2, r->points, sizeof(NSVGpoint) * r->npoints);
|
|
287
|
+
r->npoints2 = r->npoints;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
static void nsvg__addEdge(NSVGrasterizer* r, float x0, float y0, float x1, float y1)
|
|
291
|
+
{
|
|
292
|
+
NSVGedge* e;
|
|
293
|
+
|
|
294
|
+
// Skip horizontal edges
|
|
295
|
+
if (y0 == y1)
|
|
296
|
+
return;
|
|
297
|
+
|
|
298
|
+
if (r->nedges+1 > r->cedges) {
|
|
299
|
+
r->cedges = r->cedges > 0 ? r->cedges * 2 : 64;
|
|
300
|
+
r->edges = (NSVGedge*)realloc(r->edges, sizeof(NSVGedge) * r->cedges);
|
|
301
|
+
if (r->edges == NULL) return;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
e = &r->edges[r->nedges];
|
|
305
|
+
r->nedges++;
|
|
306
|
+
|
|
307
|
+
if (y0 < y1) {
|
|
308
|
+
e->x0 = x0;
|
|
309
|
+
e->y0 = y0;
|
|
310
|
+
e->x1 = x1;
|
|
311
|
+
e->y1 = y1;
|
|
312
|
+
e->dir = 1;
|
|
313
|
+
} else {
|
|
314
|
+
e->x0 = x1;
|
|
315
|
+
e->y0 = y1;
|
|
316
|
+
e->x1 = x0;
|
|
317
|
+
e->y1 = y0;
|
|
318
|
+
e->dir = -1;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
static float nsvg__normalize(float *x, float* y)
|
|
323
|
+
{
|
|
324
|
+
float d = sqrtf((*x)*(*x) + (*y)*(*y));
|
|
325
|
+
if (d > 1e-6f) {
|
|
326
|
+
float id = 1.0f / d;
|
|
327
|
+
*x *= id;
|
|
328
|
+
*y *= id;
|
|
329
|
+
}
|
|
330
|
+
return d;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
static float nsvg__absf(float x) { return x < 0 ? -x : x; }
|
|
334
|
+
static float nsvg__roundf(float x) { return (x >= 0) ? floorf(x + 0.5) : ceilf(x - 0.5); }
|
|
335
|
+
|
|
336
|
+
static void nsvg__flattenCubicBez(NSVGrasterizer* r,
|
|
337
|
+
float x1, float y1, float x2, float y2,
|
|
338
|
+
float x3, float y3, float x4, float y4,
|
|
339
|
+
int level, int type)
|
|
340
|
+
{
|
|
341
|
+
float x12,y12,x23,y23,x34,y34,x123,y123,x234,y234,x1234,y1234;
|
|
342
|
+
float dx,dy,d2,d3;
|
|
343
|
+
|
|
344
|
+
if (level > 10) return;
|
|
345
|
+
|
|
346
|
+
x12 = (x1+x2)*0.5f;
|
|
347
|
+
y12 = (y1+y2)*0.5f;
|
|
348
|
+
x23 = (x2+x3)*0.5f;
|
|
349
|
+
y23 = (y2+y3)*0.5f;
|
|
350
|
+
x34 = (x3+x4)*0.5f;
|
|
351
|
+
y34 = (y3+y4)*0.5f;
|
|
352
|
+
x123 = (x12+x23)*0.5f;
|
|
353
|
+
y123 = (y12+y23)*0.5f;
|
|
354
|
+
|
|
355
|
+
dx = x4 - x1;
|
|
356
|
+
dy = y4 - y1;
|
|
357
|
+
d2 = nsvg__absf((x2 - x4) * dy - (y2 - y4) * dx);
|
|
358
|
+
d3 = nsvg__absf((x3 - x4) * dy - (y3 - y4) * dx);
|
|
359
|
+
|
|
360
|
+
if ((d2 + d3)*(d2 + d3) < r->tessTol * (dx*dx + dy*dy)) {
|
|
361
|
+
nsvg__addPathPoint(r, x4, y4, type);
|
|
362
|
+
return;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
x234 = (x23+x34)*0.5f;
|
|
366
|
+
y234 = (y23+y34)*0.5f;
|
|
367
|
+
x1234 = (x123+x234)*0.5f;
|
|
368
|
+
y1234 = (y123+y234)*0.5f;
|
|
369
|
+
|
|
370
|
+
nsvg__flattenCubicBez(r, x1,y1, x12,y12, x123,y123, x1234,y1234, level+1, 0);
|
|
371
|
+
nsvg__flattenCubicBez(r, x1234,y1234, x234,y234, x34,y34, x4,y4, level+1, type);
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
static void nsvg__flattenShape(NSVGrasterizer* r, NSVGshape* shape, float scale)
|
|
375
|
+
{
|
|
376
|
+
int i, j;
|
|
377
|
+
NSVGpath* path;
|
|
378
|
+
|
|
379
|
+
for (path = shape->paths; path != NULL; path = path->next) {
|
|
380
|
+
r->npoints = 0;
|
|
381
|
+
// Flatten path
|
|
382
|
+
nsvg__addPathPoint(r, path->pts[0]*scale, path->pts[1]*scale, 0);
|
|
383
|
+
for (i = 0; i < path->npts-1; i += 3) {
|
|
384
|
+
float* p = &path->pts[i*2];
|
|
385
|
+
nsvg__flattenCubicBez(r, p[0]*scale,p[1]*scale, p[2]*scale,p[3]*scale, p[4]*scale,p[5]*scale, p[6]*scale,p[7]*scale, 0, 0);
|
|
386
|
+
}
|
|
387
|
+
// Close path
|
|
388
|
+
nsvg__addPathPoint(r, path->pts[0]*scale, path->pts[1]*scale, 0);
|
|
389
|
+
// Build edges
|
|
390
|
+
for (i = 0, j = r->npoints-1; i < r->npoints; j = i++)
|
|
391
|
+
nsvg__addEdge(r, r->points[j].x, r->points[j].y, r->points[i].x, r->points[i].y);
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
enum NSVGpointFlags
|
|
396
|
+
{
|
|
397
|
+
NSVG_PT_CORNER = 0x01,
|
|
398
|
+
NSVG_PT_BEVEL = 0x02,
|
|
399
|
+
NSVG_PT_LEFT = 0x04
|
|
400
|
+
};
|
|
401
|
+
|
|
402
|
+
static void nsvg__initClosed(NSVGpoint* left, NSVGpoint* right, NSVGpoint* p0, NSVGpoint* p1, float lineWidth)
|
|
403
|
+
{
|
|
404
|
+
float w = lineWidth * 0.5f;
|
|
405
|
+
float dx = p1->x - p0->x;
|
|
406
|
+
float dy = p1->y - p0->y;
|
|
407
|
+
float len = nsvg__normalize(&dx, &dy);
|
|
408
|
+
float px = p0->x + dx*len*0.5f, py = p0->y + dy*len*0.5f;
|
|
409
|
+
float dlx = dy, dly = -dx;
|
|
410
|
+
float lx = px - dlx*w, ly = py - dly*w;
|
|
411
|
+
float rx = px + dlx*w, ry = py + dly*w;
|
|
412
|
+
left->x = lx; left->y = ly;
|
|
413
|
+
right->x = rx; right->y = ry;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
static void nsvg__buttCap(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p, float dx, float dy, float lineWidth, int connect)
|
|
417
|
+
{
|
|
418
|
+
float w = lineWidth * 0.5f;
|
|
419
|
+
float px = p->x, py = p->y;
|
|
420
|
+
float dlx = dy, dly = -dx;
|
|
421
|
+
float lx = px - dlx*w, ly = py - dly*w;
|
|
422
|
+
float rx = px + dlx*w, ry = py + dly*w;
|
|
423
|
+
|
|
424
|
+
nsvg__addEdge(r, lx, ly, rx, ry);
|
|
425
|
+
|
|
426
|
+
if (connect) {
|
|
427
|
+
nsvg__addEdge(r, left->x, left->y, lx, ly);
|
|
428
|
+
nsvg__addEdge(r, rx, ry, right->x, right->y);
|
|
429
|
+
}
|
|
430
|
+
left->x = lx; left->y = ly;
|
|
431
|
+
right->x = rx; right->y = ry;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
static void nsvg__squareCap(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p, float dx, float dy, float lineWidth, int connect)
|
|
435
|
+
{
|
|
436
|
+
float w = lineWidth * 0.5f;
|
|
437
|
+
float px = p->x - dx*w, py = p->y - dy*w;
|
|
438
|
+
float dlx = dy, dly = -dx;
|
|
439
|
+
float lx = px - dlx*w, ly = py - dly*w;
|
|
440
|
+
float rx = px + dlx*w, ry = py + dly*w;
|
|
441
|
+
|
|
442
|
+
nsvg__addEdge(r, lx, ly, rx, ry);
|
|
443
|
+
|
|
444
|
+
if (connect) {
|
|
445
|
+
nsvg__addEdge(r, left->x, left->y, lx, ly);
|
|
446
|
+
nsvg__addEdge(r, rx, ry, right->x, right->y);
|
|
447
|
+
}
|
|
448
|
+
left->x = lx; left->y = ly;
|
|
449
|
+
right->x = rx; right->y = ry;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
#ifndef NSVG_PI
|
|
453
|
+
#define NSVG_PI (3.14159265358979323846264338327f)
|
|
454
|
+
#endif
|
|
455
|
+
|
|
456
|
+
static void nsvg__roundCap(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p, float dx, float dy, float lineWidth, int ncap, int connect)
|
|
457
|
+
{
|
|
458
|
+
int i;
|
|
459
|
+
float w = lineWidth * 0.5f;
|
|
460
|
+
float px = p->x, py = p->y;
|
|
461
|
+
float dlx = dy, dly = -dx;
|
|
462
|
+
float lx = 0, ly = 0, rx = 0, ry = 0, prevx = 0, prevy = 0;
|
|
463
|
+
|
|
464
|
+
for (i = 0; i < ncap; i++) {
|
|
465
|
+
float a = (float)i/(float)(ncap-1)*NSVG_PI;
|
|
466
|
+
float ax = cosf(a) * w, ay = sinf(a) * w;
|
|
467
|
+
float x = px - dlx*ax - dx*ay;
|
|
468
|
+
float y = py - dly*ax - dy*ay;
|
|
469
|
+
|
|
470
|
+
if (i > 0)
|
|
471
|
+
nsvg__addEdge(r, prevx, prevy, x, y);
|
|
472
|
+
|
|
473
|
+
prevx = x;
|
|
474
|
+
prevy = y;
|
|
475
|
+
|
|
476
|
+
if (i == 0) {
|
|
477
|
+
lx = x; ly = y;
|
|
478
|
+
} else if (i == ncap-1) {
|
|
479
|
+
rx = x; ry = y;
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
if (connect) {
|
|
484
|
+
nsvg__addEdge(r, left->x, left->y, lx, ly);
|
|
485
|
+
nsvg__addEdge(r, rx, ry, right->x, right->y);
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
left->x = lx; left->y = ly;
|
|
489
|
+
right->x = rx; right->y = ry;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
static void nsvg__bevelJoin(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p0, NSVGpoint* p1, float lineWidth)
|
|
493
|
+
{
|
|
494
|
+
float w = lineWidth * 0.5f;
|
|
495
|
+
float dlx0 = p0->dy, dly0 = -p0->dx;
|
|
496
|
+
float dlx1 = p1->dy, dly1 = -p1->dx;
|
|
497
|
+
float lx0 = p1->x - (dlx0 * w), ly0 = p1->y - (dly0 * w);
|
|
498
|
+
float rx0 = p1->x + (dlx0 * w), ry0 = p1->y + (dly0 * w);
|
|
499
|
+
float lx1 = p1->x - (dlx1 * w), ly1 = p1->y - (dly1 * w);
|
|
500
|
+
float rx1 = p1->x + (dlx1 * w), ry1 = p1->y + (dly1 * w);
|
|
501
|
+
|
|
502
|
+
nsvg__addEdge(r, lx0, ly0, left->x, left->y);
|
|
503
|
+
nsvg__addEdge(r, lx1, ly1, lx0, ly0);
|
|
504
|
+
|
|
505
|
+
nsvg__addEdge(r, right->x, right->y, rx0, ry0);
|
|
506
|
+
nsvg__addEdge(r, rx0, ry0, rx1, ry1);
|
|
507
|
+
|
|
508
|
+
left->x = lx1; left->y = ly1;
|
|
509
|
+
right->x = rx1; right->y = ry1;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
static void nsvg__miterJoin(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p0, NSVGpoint* p1, float lineWidth)
|
|
513
|
+
{
|
|
514
|
+
float w = lineWidth * 0.5f;
|
|
515
|
+
float dlx0 = p0->dy, dly0 = -p0->dx;
|
|
516
|
+
float dlx1 = p1->dy, dly1 = -p1->dx;
|
|
517
|
+
float lx0, rx0, lx1, rx1;
|
|
518
|
+
float ly0, ry0, ly1, ry1;
|
|
519
|
+
|
|
520
|
+
if (p1->flags & NSVG_PT_LEFT) {
|
|
521
|
+
lx0 = lx1 = p1->x - p1->dmx * w;
|
|
522
|
+
ly0 = ly1 = p1->y - p1->dmy * w;
|
|
523
|
+
nsvg__addEdge(r, lx1, ly1, left->x, left->y);
|
|
524
|
+
|
|
525
|
+
rx0 = p1->x + (dlx0 * w);
|
|
526
|
+
ry0 = p1->y + (dly0 * w);
|
|
527
|
+
rx1 = p1->x + (dlx1 * w);
|
|
528
|
+
ry1 = p1->y + (dly1 * w);
|
|
529
|
+
nsvg__addEdge(r, right->x, right->y, rx0, ry0);
|
|
530
|
+
nsvg__addEdge(r, rx0, ry0, rx1, ry1);
|
|
531
|
+
} else {
|
|
532
|
+
lx0 = p1->x - (dlx0 * w);
|
|
533
|
+
ly0 = p1->y - (dly0 * w);
|
|
534
|
+
lx1 = p1->x - (dlx1 * w);
|
|
535
|
+
ly1 = p1->y - (dly1 * w);
|
|
536
|
+
nsvg__addEdge(r, lx0, ly0, left->x, left->y);
|
|
537
|
+
nsvg__addEdge(r, lx1, ly1, lx0, ly0);
|
|
538
|
+
|
|
539
|
+
rx0 = rx1 = p1->x + p1->dmx * w;
|
|
540
|
+
ry0 = ry1 = p1->y + p1->dmy * w;
|
|
541
|
+
nsvg__addEdge(r, right->x, right->y, rx1, ry1);
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
left->x = lx1; left->y = ly1;
|
|
545
|
+
right->x = rx1; right->y = ry1;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
static void nsvg__roundJoin(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p0, NSVGpoint* p1, float lineWidth, int ncap)
|
|
549
|
+
{
|
|
550
|
+
int i, n;
|
|
551
|
+
float w = lineWidth * 0.5f;
|
|
552
|
+
float dlx0 = p0->dy, dly0 = -p0->dx;
|
|
553
|
+
float dlx1 = p1->dy, dly1 = -p1->dx;
|
|
554
|
+
float a0 = atan2f(dly0, dlx0);
|
|
555
|
+
float a1 = atan2f(dly1, dlx1);
|
|
556
|
+
float da = a1 - a0;
|
|
557
|
+
float lx, ly, rx, ry;
|
|
558
|
+
|
|
559
|
+
if (da < NSVG_PI) da += NSVG_PI*2;
|
|
560
|
+
if (da > NSVG_PI) da -= NSVG_PI*2;
|
|
561
|
+
|
|
562
|
+
n = (int)ceilf((nsvg__absf(da) / NSVG_PI) * (float)ncap);
|
|
563
|
+
if (n < 2) n = 2;
|
|
564
|
+
if (n > ncap) n = ncap;
|
|
565
|
+
|
|
566
|
+
lx = left->x;
|
|
567
|
+
ly = left->y;
|
|
568
|
+
rx = right->x;
|
|
569
|
+
ry = right->y;
|
|
570
|
+
|
|
571
|
+
for (i = 0; i < n; i++) {
|
|
572
|
+
float u = (float)i/(float)(n-1);
|
|
573
|
+
float a = a0 + u*da;
|
|
574
|
+
float ax = cosf(a) * w, ay = sinf(a) * w;
|
|
575
|
+
float lx1 = p1->x - ax, ly1 = p1->y - ay;
|
|
576
|
+
float rx1 = p1->x + ax, ry1 = p1->y + ay;
|
|
577
|
+
|
|
578
|
+
nsvg__addEdge(r, lx1, ly1, lx, ly);
|
|
579
|
+
nsvg__addEdge(r, rx, ry, rx1, ry1);
|
|
580
|
+
|
|
581
|
+
lx = lx1; ly = ly1;
|
|
582
|
+
rx = rx1; ry = ry1;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
left->x = lx; left->y = ly;
|
|
586
|
+
right->x = rx; right->y = ry;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
static void nsvg__straightJoin(NSVGrasterizer* r, NSVGpoint* left, NSVGpoint* right, NSVGpoint* p1, float lineWidth)
|
|
590
|
+
{
|
|
591
|
+
float w = lineWidth * 0.5f;
|
|
592
|
+
float lx = p1->x - (p1->dmx * w), ly = p1->y - (p1->dmy * w);
|
|
593
|
+
float rx = p1->x + (p1->dmx * w), ry = p1->y + (p1->dmy * w);
|
|
594
|
+
|
|
595
|
+
nsvg__addEdge(r, lx, ly, left->x, left->y);
|
|
596
|
+
nsvg__addEdge(r, right->x, right->y, rx, ry);
|
|
597
|
+
|
|
598
|
+
left->x = lx; left->y = ly;
|
|
599
|
+
right->x = rx; right->y = ry;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
static int nsvg__curveDivs(float r, float arc, float tol)
|
|
603
|
+
{
|
|
604
|
+
float da = acosf(r / (r + tol)) * 2.0f;
|
|
605
|
+
int divs = (int)ceilf(arc / da);
|
|
606
|
+
if (divs < 2) divs = 2;
|
|
607
|
+
return divs;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
static void nsvg__expandStroke(NSVGrasterizer* r, NSVGpoint* points, int npoints, int closed, int lineJoin, int lineCap, float lineWidth)
|
|
611
|
+
{
|
|
612
|
+
int ncap = nsvg__curveDivs(lineWidth*0.5f, NSVG_PI, r->tessTol); // Calculate divisions per half circle.
|
|
613
|
+
NSVGpoint left = {0,0,0,0,0,0,0,0}, right = {0,0,0,0,0,0,0,0}, firstLeft = {0,0,0,0,0,0,0,0}, firstRight = {0,0,0,0,0,0,0,0};
|
|
614
|
+
NSVGpoint* p0, *p1;
|
|
615
|
+
int j, s, e;
|
|
616
|
+
|
|
617
|
+
// Build stroke edges
|
|
618
|
+
if (closed) {
|
|
619
|
+
// Looping
|
|
620
|
+
p0 = &points[npoints-1];
|
|
621
|
+
p1 = &points[0];
|
|
622
|
+
s = 0;
|
|
623
|
+
e = npoints;
|
|
624
|
+
} else {
|
|
625
|
+
// Add cap
|
|
626
|
+
p0 = &points[0];
|
|
627
|
+
p1 = &points[1];
|
|
628
|
+
s = 1;
|
|
629
|
+
e = npoints-1;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
if (closed) {
|
|
633
|
+
nsvg__initClosed(&left, &right, p0, p1, lineWidth);
|
|
634
|
+
firstLeft = left;
|
|
635
|
+
firstRight = right;
|
|
636
|
+
} else {
|
|
637
|
+
// Add cap
|
|
638
|
+
float dx = p1->x - p0->x;
|
|
639
|
+
float dy = p1->y - p0->y;
|
|
640
|
+
nsvg__normalize(&dx, &dy);
|
|
641
|
+
if (lineCap == NSVG_CAP_BUTT)
|
|
642
|
+
nsvg__buttCap(r, &left, &right, p0, dx, dy, lineWidth, 0);
|
|
643
|
+
else if (lineCap == NSVG_CAP_SQUARE)
|
|
644
|
+
nsvg__squareCap(r, &left, &right, p0, dx, dy, lineWidth, 0);
|
|
645
|
+
else if (lineCap == NSVG_CAP_ROUND)
|
|
646
|
+
nsvg__roundCap(r, &left, &right, p0, dx, dy, lineWidth, ncap, 0);
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
for (j = s; j < e; ++j) {
|
|
650
|
+
if (p1->flags & NSVG_PT_CORNER) {
|
|
651
|
+
if (lineJoin == NSVG_JOIN_ROUND)
|
|
652
|
+
nsvg__roundJoin(r, &left, &right, p0, p1, lineWidth, ncap);
|
|
653
|
+
else if (lineJoin == NSVG_JOIN_BEVEL || (p1->flags & NSVG_PT_BEVEL))
|
|
654
|
+
nsvg__bevelJoin(r, &left, &right, p0, p1, lineWidth);
|
|
655
|
+
else
|
|
656
|
+
nsvg__miterJoin(r, &left, &right, p0, p1, lineWidth);
|
|
657
|
+
} else {
|
|
658
|
+
nsvg__straightJoin(r, &left, &right, p1, lineWidth);
|
|
659
|
+
}
|
|
660
|
+
p0 = p1++;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
if (closed) {
|
|
664
|
+
// Loop it
|
|
665
|
+
nsvg__addEdge(r, firstLeft.x, firstLeft.y, left.x, left.y);
|
|
666
|
+
nsvg__addEdge(r, right.x, right.y, firstRight.x, firstRight.y);
|
|
667
|
+
} else {
|
|
668
|
+
// Add cap
|
|
669
|
+
float dx = p1->x - p0->x;
|
|
670
|
+
float dy = p1->y - p0->y;
|
|
671
|
+
nsvg__normalize(&dx, &dy);
|
|
672
|
+
if (lineCap == NSVG_CAP_BUTT)
|
|
673
|
+
nsvg__buttCap(r, &right, &left, p1, -dx, -dy, lineWidth, 1);
|
|
674
|
+
else if (lineCap == NSVG_CAP_SQUARE)
|
|
675
|
+
nsvg__squareCap(r, &right, &left, p1, -dx, -dy, lineWidth, 1);
|
|
676
|
+
else if (lineCap == NSVG_CAP_ROUND)
|
|
677
|
+
nsvg__roundCap(r, &right, &left, p1, -dx, -dy, lineWidth, ncap, 1);
|
|
678
|
+
}
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
static void nsvg__prepareStroke(NSVGrasterizer* r, float miterLimit, int lineJoin)
|
|
682
|
+
{
|
|
683
|
+
int i, j;
|
|
684
|
+
NSVGpoint* p0, *p1;
|
|
685
|
+
|
|
686
|
+
p0 = &r->points[r->npoints-1];
|
|
687
|
+
p1 = &r->points[0];
|
|
688
|
+
for (i = 0; i < r->npoints; i++) {
|
|
689
|
+
// Calculate segment direction and length
|
|
690
|
+
p0->dx = p1->x - p0->x;
|
|
691
|
+
p0->dy = p1->y - p0->y;
|
|
692
|
+
p0->len = nsvg__normalize(&p0->dx, &p0->dy);
|
|
693
|
+
// Advance
|
|
694
|
+
p0 = p1++;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
// calculate joins
|
|
698
|
+
p0 = &r->points[r->npoints-1];
|
|
699
|
+
p1 = &r->points[0];
|
|
700
|
+
for (j = 0; j < r->npoints; j++) {
|
|
701
|
+
float dlx0, dly0, dlx1, dly1, dmr2, cross;
|
|
702
|
+
dlx0 = p0->dy;
|
|
703
|
+
dly0 = -p0->dx;
|
|
704
|
+
dlx1 = p1->dy;
|
|
705
|
+
dly1 = -p1->dx;
|
|
706
|
+
// Calculate extrusions
|
|
707
|
+
p1->dmx = (dlx0 + dlx1) * 0.5f;
|
|
708
|
+
p1->dmy = (dly0 + dly1) * 0.5f;
|
|
709
|
+
dmr2 = p1->dmx*p1->dmx + p1->dmy*p1->dmy;
|
|
710
|
+
if (dmr2 > 0.000001f) {
|
|
711
|
+
float s2 = 1.0f / dmr2;
|
|
712
|
+
if (s2 > 600.0f) {
|
|
713
|
+
s2 = 600.0f;
|
|
714
|
+
}
|
|
715
|
+
p1->dmx *= s2;
|
|
716
|
+
p1->dmy *= s2;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
// Clear flags, but keep the corner.
|
|
720
|
+
p1->flags = (p1->flags & NSVG_PT_CORNER) ? NSVG_PT_CORNER : 0;
|
|
721
|
+
|
|
722
|
+
// Keep track of left turns.
|
|
723
|
+
cross = p1->dx * p0->dy - p0->dx * p1->dy;
|
|
724
|
+
if (cross > 0.0f)
|
|
725
|
+
p1->flags |= NSVG_PT_LEFT;
|
|
726
|
+
|
|
727
|
+
// Check to see if the corner needs to be beveled.
|
|
728
|
+
if (p1->flags & NSVG_PT_CORNER) {
|
|
729
|
+
if ((dmr2 * miterLimit*miterLimit) < 1.0f || lineJoin == NSVG_JOIN_BEVEL || lineJoin == NSVG_JOIN_ROUND) {
|
|
730
|
+
p1->flags |= NSVG_PT_BEVEL;
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
p0 = p1++;
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
static void nsvg__flattenShapeStroke(NSVGrasterizer* r, NSVGshape* shape, float scale)
|
|
739
|
+
{
|
|
740
|
+
int i, j, closed;
|
|
741
|
+
NSVGpath* path;
|
|
742
|
+
NSVGpoint* p0, *p1;
|
|
743
|
+
float miterLimit = shape->miterLimit;
|
|
744
|
+
int lineJoin = shape->strokeLineJoin;
|
|
745
|
+
int lineCap = shape->strokeLineCap;
|
|
746
|
+
float lineWidth = shape->strokeWidth * scale;
|
|
747
|
+
|
|
748
|
+
for (path = shape->paths; path != NULL; path = path->next) {
|
|
749
|
+
// Flatten path
|
|
750
|
+
r->npoints = 0;
|
|
751
|
+
nsvg__addPathPoint(r, path->pts[0]*scale, path->pts[1]*scale, NSVG_PT_CORNER);
|
|
752
|
+
for (i = 0; i < path->npts-1; i += 3) {
|
|
753
|
+
float* p = &path->pts[i*2];
|
|
754
|
+
nsvg__flattenCubicBez(r, p[0]*scale,p[1]*scale, p[2]*scale,p[3]*scale, p[4]*scale,p[5]*scale, p[6]*scale,p[7]*scale, 0, NSVG_PT_CORNER);
|
|
755
|
+
}
|
|
756
|
+
if (r->npoints < 2)
|
|
757
|
+
continue;
|
|
758
|
+
|
|
759
|
+
closed = path->closed;
|
|
760
|
+
|
|
761
|
+
// If the first and last points are the same, remove the last, mark as closed path.
|
|
762
|
+
p0 = &r->points[r->npoints-1];
|
|
763
|
+
p1 = &r->points[0];
|
|
764
|
+
if (nsvg__ptEquals(p0->x,p0->y, p1->x,p1->y, r->distTol)) {
|
|
765
|
+
r->npoints--;
|
|
766
|
+
p0 = &r->points[r->npoints-1];
|
|
767
|
+
closed = 1;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
if (shape->strokeDashCount > 0) {
|
|
771
|
+
int idash = 0, dashState = 1;
|
|
772
|
+
float totalDist = 0, dashLen, allDashLen, dashOffset;
|
|
773
|
+
NSVGpoint cur;
|
|
774
|
+
|
|
775
|
+
if (closed)
|
|
776
|
+
nsvg__appendPathPoint(r, r->points[0]);
|
|
777
|
+
|
|
778
|
+
// Duplicate points -> points2.
|
|
779
|
+
nsvg__duplicatePoints(r);
|
|
780
|
+
|
|
781
|
+
r->npoints = 0;
|
|
782
|
+
cur = r->points2[0];
|
|
783
|
+
nsvg__appendPathPoint(r, cur);
|
|
784
|
+
|
|
785
|
+
// Figure out dash offset.
|
|
786
|
+
allDashLen = 0;
|
|
787
|
+
for (j = 0; j < shape->strokeDashCount; j++)
|
|
788
|
+
allDashLen += shape->strokeDashArray[j];
|
|
789
|
+
if (shape->strokeDashCount & 1)
|
|
790
|
+
allDashLen *= 2.0f;
|
|
791
|
+
// Find location inside pattern
|
|
792
|
+
dashOffset = fmodf(shape->strokeDashOffset, allDashLen);
|
|
793
|
+
if (dashOffset < 0.0f)
|
|
794
|
+
dashOffset += allDashLen;
|
|
795
|
+
|
|
796
|
+
while (dashOffset > shape->strokeDashArray[idash]) {
|
|
797
|
+
dashOffset -= shape->strokeDashArray[idash];
|
|
798
|
+
idash = (idash + 1) % shape->strokeDashCount;
|
|
799
|
+
}
|
|
800
|
+
dashLen = (shape->strokeDashArray[idash] - dashOffset) * scale;
|
|
801
|
+
|
|
802
|
+
for (j = 1; j < r->npoints2; ) {
|
|
803
|
+
float dx = r->points2[j].x - cur.x;
|
|
804
|
+
float dy = r->points2[j].y - cur.y;
|
|
805
|
+
float dist = sqrtf(dx*dx + dy*dy);
|
|
806
|
+
|
|
807
|
+
if ((totalDist + dist) > dashLen) {
|
|
808
|
+
// Calculate intermediate point
|
|
809
|
+
float d = (dashLen - totalDist) / dist;
|
|
810
|
+
float x = cur.x + dx * d;
|
|
811
|
+
float y = cur.y + dy * d;
|
|
812
|
+
nsvg__addPathPoint(r, x, y, NSVG_PT_CORNER);
|
|
813
|
+
|
|
814
|
+
// Stroke
|
|
815
|
+
if (r->npoints > 1 && dashState) {
|
|
816
|
+
nsvg__prepareStroke(r, miterLimit, lineJoin);
|
|
817
|
+
nsvg__expandStroke(r, r->points, r->npoints, 0, lineJoin, lineCap, lineWidth);
|
|
818
|
+
}
|
|
819
|
+
// Advance dash pattern
|
|
820
|
+
dashState = !dashState;
|
|
821
|
+
idash = (idash+1) % shape->strokeDashCount;
|
|
822
|
+
dashLen = shape->strokeDashArray[idash] * scale;
|
|
823
|
+
// Restart
|
|
824
|
+
cur.x = x;
|
|
825
|
+
cur.y = y;
|
|
826
|
+
cur.flags = NSVG_PT_CORNER;
|
|
827
|
+
totalDist = 0.0f;
|
|
828
|
+
r->npoints = 0;
|
|
829
|
+
nsvg__appendPathPoint(r, cur);
|
|
830
|
+
} else {
|
|
831
|
+
totalDist += dist;
|
|
832
|
+
cur = r->points2[j];
|
|
833
|
+
nsvg__appendPathPoint(r, cur);
|
|
834
|
+
j++;
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
// Stroke any leftover path
|
|
838
|
+
if (r->npoints > 1 && dashState) {
|
|
839
|
+
nsvg__prepareStroke(r, miterLimit, lineJoin);
|
|
840
|
+
nsvg__expandStroke(r, r->points, r->npoints, 0, lineJoin, lineCap, lineWidth);
|
|
841
|
+
}
|
|
842
|
+
} else {
|
|
843
|
+
nsvg__prepareStroke(r, miterLimit, lineJoin);
|
|
844
|
+
nsvg__expandStroke(r, r->points, r->npoints, closed, lineJoin, lineCap, lineWidth);
|
|
845
|
+
}
|
|
846
|
+
}
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
static int nsvg__cmpEdge(const void *p, const void *q)
|
|
850
|
+
{
|
|
851
|
+
const NSVGedge* a = (const NSVGedge*)p;
|
|
852
|
+
const NSVGedge* b = (const NSVGedge*)q;
|
|
853
|
+
|
|
854
|
+
if (a->y0 < b->y0) return -1;
|
|
855
|
+
if (a->y0 > b->y0) return 1;
|
|
856
|
+
return 0;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
static NSVGactiveEdge* nsvg__addActive(NSVGrasterizer* r, NSVGedge* e, float startPoint)
|
|
861
|
+
{
|
|
862
|
+
NSVGactiveEdge* z;
|
|
863
|
+
|
|
864
|
+
if (r->freelist != NULL) {
|
|
865
|
+
// Restore from freelist.
|
|
866
|
+
z = r->freelist;
|
|
867
|
+
r->freelist = z->next;
|
|
868
|
+
} else {
|
|
869
|
+
// Alloc new edge.
|
|
870
|
+
z = (NSVGactiveEdge*)nsvg__alloc(r, sizeof(NSVGactiveEdge));
|
|
871
|
+
if (z == NULL) return NULL;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0);
|
|
875
|
+
// STBTT_assert(e->y0 <= start_point);
|
|
876
|
+
// round dx down to avoid going too far
|
|
877
|
+
if (dxdy < 0)
|
|
878
|
+
z->dx = (int)(-nsvg__roundf(NSVG__FIX * -dxdy));
|
|
879
|
+
else
|
|
880
|
+
z->dx = (int)nsvg__roundf(NSVG__FIX * dxdy);
|
|
881
|
+
z->x = (int)nsvg__roundf(NSVG__FIX * (e->x0 + dxdy * (startPoint - e->y0)));
|
|
882
|
+
// z->x -= off_x * FIX;
|
|
883
|
+
z->ey = e->y1;
|
|
884
|
+
z->next = 0;
|
|
885
|
+
z->dir = e->dir;
|
|
886
|
+
|
|
887
|
+
return z;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
static void nsvg__freeActive(NSVGrasterizer* r, NSVGactiveEdge* z)
|
|
891
|
+
{
|
|
892
|
+
z->next = r->freelist;
|
|
893
|
+
r->freelist = z;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
static void nsvg__fillScanline(unsigned char* scanline, int len, int x0, int x1, int maxWeight, int* xmin, int* xmax)
|
|
897
|
+
{
|
|
898
|
+
int i = x0 >> NSVG__FIXSHIFT;
|
|
899
|
+
int j = x1 >> NSVG__FIXSHIFT;
|
|
900
|
+
if (i < *xmin) *xmin = i;
|
|
901
|
+
if (j > *xmax) *xmax = j;
|
|
902
|
+
if (i < len && j >= 0) {
|
|
903
|
+
if (i == j) {
|
|
904
|
+
// x0,x1 are the same pixel, so compute combined coverage
|
|
905
|
+
scanline[i] = (unsigned char)(scanline[i] + ((x1 - x0) * maxWeight >> NSVG__FIXSHIFT));
|
|
906
|
+
} else {
|
|
907
|
+
if (i >= 0) // add antialiasing for x0
|
|
908
|
+
scanline[i] = (unsigned char)(scanline[i] + (((NSVG__FIX - (x0 & NSVG__FIXMASK)) * maxWeight) >> NSVG__FIXSHIFT));
|
|
909
|
+
else
|
|
910
|
+
i = -1; // clip
|
|
911
|
+
|
|
912
|
+
if (j < len) // add antialiasing for x1
|
|
913
|
+
scanline[j] = (unsigned char)(scanline[j] + (((x1 & NSVG__FIXMASK) * maxWeight) >> NSVG__FIXSHIFT));
|
|
914
|
+
else
|
|
915
|
+
j = len; // clip
|
|
916
|
+
|
|
917
|
+
for (++i; i < j; ++i) // fill pixels between x0 and x1
|
|
918
|
+
scanline[i] = (unsigned char)(scanline[i] + maxWeight);
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
// note: this routine clips fills that extend off the edges... ideally this
|
|
924
|
+
// wouldn't happen, but it could happen if the truetype glyph bounding boxes
|
|
925
|
+
// are wrong, or if the user supplies a too-small bitmap
|
|
926
|
+
static void nsvg__fillActiveEdges(unsigned char* scanline, int len, NSVGactiveEdge* e, int maxWeight, int* xmin, int* xmax, char fillRule)
|
|
927
|
+
{
|
|
928
|
+
// non-zero winding fill
|
|
929
|
+
int x0 = 0, w = 0;
|
|
930
|
+
|
|
931
|
+
if (fillRule == NSVG_FILLRULE_NONZERO) {
|
|
932
|
+
// Non-zero
|
|
933
|
+
while (e != NULL) {
|
|
934
|
+
if (w == 0) {
|
|
935
|
+
// if we're currently at zero, we need to record the edge start point
|
|
936
|
+
x0 = e->x; w += e->dir;
|
|
937
|
+
} else {
|
|
938
|
+
int x1 = e->x; w += e->dir;
|
|
939
|
+
// if we went to zero, we need to draw
|
|
940
|
+
if (w == 0)
|
|
941
|
+
nsvg__fillScanline(scanline, len, x0, x1, maxWeight, xmin, xmax);
|
|
942
|
+
}
|
|
943
|
+
e = e->next;
|
|
944
|
+
}
|
|
945
|
+
} else if (fillRule == NSVG_FILLRULE_EVENODD) {
|
|
946
|
+
// Even-odd
|
|
947
|
+
while (e != NULL) {
|
|
948
|
+
if (w == 0) {
|
|
949
|
+
// if we're currently at zero, we need to record the edge start point
|
|
950
|
+
x0 = e->x; w = 1;
|
|
951
|
+
} else {
|
|
952
|
+
int x1 = e->x; w = 0;
|
|
953
|
+
nsvg__fillScanline(scanline, len, x0, x1, maxWeight, xmin, xmax);
|
|
954
|
+
}
|
|
955
|
+
e = e->next;
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
static float nsvg__clampf(float a, float mn, float mx) {
|
|
961
|
+
if (isnan(a))
|
|
962
|
+
return mn;
|
|
963
|
+
return a < mn ? mn : (a > mx ? mx : a);
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
static unsigned int nsvg__RGBA(unsigned char r, unsigned char g, unsigned char b, unsigned char a)
|
|
967
|
+
{
|
|
968
|
+
return ((unsigned int)r) | ((unsigned int)g << 8) | ((unsigned int)b << 16) | ((unsigned int)a << 24);
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
static unsigned int nsvg__lerpRGBA(unsigned int c0, unsigned int c1, float u)
|
|
972
|
+
{
|
|
973
|
+
int iu = (int)(nsvg__clampf(u, 0.0f, 1.0f) * 256.0f);
|
|
974
|
+
int r = (((c0) & 0xff)*(256-iu) + (((c1) & 0xff)*iu)) >> 8;
|
|
975
|
+
int g = (((c0>>8) & 0xff)*(256-iu) + (((c1>>8) & 0xff)*iu)) >> 8;
|
|
976
|
+
int b = (((c0>>16) & 0xff)*(256-iu) + (((c1>>16) & 0xff)*iu)) >> 8;
|
|
977
|
+
int a = (((c0>>24) & 0xff)*(256-iu) + (((c1>>24) & 0xff)*iu)) >> 8;
|
|
978
|
+
return nsvg__RGBA((unsigned char)r, (unsigned char)g, (unsigned char)b, (unsigned char)a);
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
static unsigned int nsvg__applyOpacity(unsigned int c, float u)
|
|
982
|
+
{
|
|
983
|
+
int iu = (int)(nsvg__clampf(u, 0.0f, 1.0f) * 256.0f);
|
|
984
|
+
int r = (c) & 0xff;
|
|
985
|
+
int g = (c>>8) & 0xff;
|
|
986
|
+
int b = (c>>16) & 0xff;
|
|
987
|
+
int a = (((c>>24) & 0xff)*iu) >> 8;
|
|
988
|
+
return nsvg__RGBA((unsigned char)r, (unsigned char)g, (unsigned char)b, (unsigned char)a);
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
static inline int nsvg__div255(int x)
|
|
992
|
+
{
|
|
993
|
+
return ((x+1) * 257) >> 16;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
static void nsvg__scanlineSolid(unsigned char* dst, int count, unsigned char* cover, int x, int y,
|
|
997
|
+
float tx, float ty, float scale, NSVGcachedPaint* cache)
|
|
998
|
+
{
|
|
999
|
+
|
|
1000
|
+
if (cache->type == NSVG_PAINT_COLOR) {
|
|
1001
|
+
int i, cr, cg, cb, ca;
|
|
1002
|
+
cr = cache->colors[0] & 0xff;
|
|
1003
|
+
cg = (cache->colors[0] >> 8) & 0xff;
|
|
1004
|
+
cb = (cache->colors[0] >> 16) & 0xff;
|
|
1005
|
+
ca = (cache->colors[0] >> 24) & 0xff;
|
|
1006
|
+
|
|
1007
|
+
for (i = 0; i < count; i++) {
|
|
1008
|
+
int r,g,b;
|
|
1009
|
+
int a = nsvg__div255((int)cover[0] * ca);
|
|
1010
|
+
int ia = 255 - a;
|
|
1011
|
+
// Premultiply
|
|
1012
|
+
r = nsvg__div255(cr * a);
|
|
1013
|
+
g = nsvg__div255(cg * a);
|
|
1014
|
+
b = nsvg__div255(cb * a);
|
|
1015
|
+
|
|
1016
|
+
// Blend over
|
|
1017
|
+
r += nsvg__div255(ia * (int)dst[0]);
|
|
1018
|
+
g += nsvg__div255(ia * (int)dst[1]);
|
|
1019
|
+
b += nsvg__div255(ia * (int)dst[2]);
|
|
1020
|
+
a += nsvg__div255(ia * (int)dst[3]);
|
|
1021
|
+
|
|
1022
|
+
dst[0] = (unsigned char)r;
|
|
1023
|
+
dst[1] = (unsigned char)g;
|
|
1024
|
+
dst[2] = (unsigned char)b;
|
|
1025
|
+
dst[3] = (unsigned char)a;
|
|
1026
|
+
|
|
1027
|
+
cover++;
|
|
1028
|
+
dst += 4;
|
|
1029
|
+
}
|
|
1030
|
+
} else if (cache->type == NSVG_PAINT_LINEAR_GRADIENT) {
|
|
1031
|
+
// TODO: spread modes.
|
|
1032
|
+
// TODO: plenty of opportunities to optimize.
|
|
1033
|
+
float fx, fy, dx, gy;
|
|
1034
|
+
float* t = cache->xform;
|
|
1035
|
+
int i, cr, cg, cb, ca;
|
|
1036
|
+
unsigned int c;
|
|
1037
|
+
|
|
1038
|
+
fx = ((float)x - tx) / scale;
|
|
1039
|
+
fy = ((float)y - ty) / scale;
|
|
1040
|
+
dx = 1.0f / scale;
|
|
1041
|
+
|
|
1042
|
+
for (i = 0; i < count; i++) {
|
|
1043
|
+
int r,g,b,a,ia;
|
|
1044
|
+
gy = fx*t[1] + fy*t[3] + t[5];
|
|
1045
|
+
c = cache->colors[(int)nsvg__clampf(gy*255.0f, 0, 255.0f)];
|
|
1046
|
+
cr = (c) & 0xff;
|
|
1047
|
+
cg = (c >> 8) & 0xff;
|
|
1048
|
+
cb = (c >> 16) & 0xff;
|
|
1049
|
+
ca = (c >> 24) & 0xff;
|
|
1050
|
+
|
|
1051
|
+
a = nsvg__div255((int)cover[0] * ca);
|
|
1052
|
+
ia = 255 - a;
|
|
1053
|
+
|
|
1054
|
+
// Premultiply
|
|
1055
|
+
r = nsvg__div255(cr * a);
|
|
1056
|
+
g = nsvg__div255(cg * a);
|
|
1057
|
+
b = nsvg__div255(cb * a);
|
|
1058
|
+
|
|
1059
|
+
// Blend over
|
|
1060
|
+
r += nsvg__div255(ia * (int)dst[0]);
|
|
1061
|
+
g += nsvg__div255(ia * (int)dst[1]);
|
|
1062
|
+
b += nsvg__div255(ia * (int)dst[2]);
|
|
1063
|
+
a += nsvg__div255(ia * (int)dst[3]);
|
|
1064
|
+
|
|
1065
|
+
dst[0] = (unsigned char)r;
|
|
1066
|
+
dst[1] = (unsigned char)g;
|
|
1067
|
+
dst[2] = (unsigned char)b;
|
|
1068
|
+
dst[3] = (unsigned char)a;
|
|
1069
|
+
|
|
1070
|
+
cover++;
|
|
1071
|
+
dst += 4;
|
|
1072
|
+
fx += dx;
|
|
1073
|
+
}
|
|
1074
|
+
} else if (cache->type == NSVG_PAINT_RADIAL_GRADIENT) {
|
|
1075
|
+
// TODO: spread modes.
|
|
1076
|
+
// TODO: plenty of opportunities to optimize.
|
|
1077
|
+
// TODO: focus (fx,fy)
|
|
1078
|
+
float fx, fy, dx, gx, gy, gd;
|
|
1079
|
+
float* t = cache->xform;
|
|
1080
|
+
int i, cr, cg, cb, ca;
|
|
1081
|
+
unsigned int c;
|
|
1082
|
+
|
|
1083
|
+
fx = ((float)x - tx) / scale;
|
|
1084
|
+
fy = ((float)y - ty) / scale;
|
|
1085
|
+
dx = 1.0f / scale;
|
|
1086
|
+
|
|
1087
|
+
for (i = 0; i < count; i++) {
|
|
1088
|
+
int r,g,b,a,ia;
|
|
1089
|
+
gx = fx*t[0] + fy*t[2] + t[4];
|
|
1090
|
+
gy = fx*t[1] + fy*t[3] + t[5];
|
|
1091
|
+
gd = sqrtf(gx*gx + gy*gy);
|
|
1092
|
+
c = cache->colors[(int)nsvg__clampf(gd*255.0f, 0, 255.0f)];
|
|
1093
|
+
cr = (c) & 0xff;
|
|
1094
|
+
cg = (c >> 8) & 0xff;
|
|
1095
|
+
cb = (c >> 16) & 0xff;
|
|
1096
|
+
ca = (c >> 24) & 0xff;
|
|
1097
|
+
|
|
1098
|
+
a = nsvg__div255((int)cover[0] * ca);
|
|
1099
|
+
ia = 255 - a;
|
|
1100
|
+
|
|
1101
|
+
// Premultiply
|
|
1102
|
+
r = nsvg__div255(cr * a);
|
|
1103
|
+
g = nsvg__div255(cg * a);
|
|
1104
|
+
b = nsvg__div255(cb * a);
|
|
1105
|
+
|
|
1106
|
+
// Blend over
|
|
1107
|
+
r += nsvg__div255(ia * (int)dst[0]);
|
|
1108
|
+
g += nsvg__div255(ia * (int)dst[1]);
|
|
1109
|
+
b += nsvg__div255(ia * (int)dst[2]);
|
|
1110
|
+
a += nsvg__div255(ia * (int)dst[3]);
|
|
1111
|
+
|
|
1112
|
+
dst[0] = (unsigned char)r;
|
|
1113
|
+
dst[1] = (unsigned char)g;
|
|
1114
|
+
dst[2] = (unsigned char)b;
|
|
1115
|
+
dst[3] = (unsigned char)a;
|
|
1116
|
+
|
|
1117
|
+
cover++;
|
|
1118
|
+
dst += 4;
|
|
1119
|
+
fx += dx;
|
|
1120
|
+
}
|
|
1121
|
+
}
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
static void nsvg__rasterizeSortedEdges(NSVGrasterizer *r, float tx, float ty, float scale, NSVGcachedPaint* cache, char fillRule)
|
|
1125
|
+
{
|
|
1126
|
+
NSVGactiveEdge *active = NULL;
|
|
1127
|
+
int y, s;
|
|
1128
|
+
int e = 0;
|
|
1129
|
+
int maxWeight = (255 / NSVG__SUBSAMPLES); // weight per vertical scanline
|
|
1130
|
+
int xmin, xmax;
|
|
1131
|
+
|
|
1132
|
+
for (y = 0; y < r->height; y++) {
|
|
1133
|
+
memset(r->scanline, 0, r->width);
|
|
1134
|
+
xmin = r->width;
|
|
1135
|
+
xmax = 0;
|
|
1136
|
+
for (s = 0; s < NSVG__SUBSAMPLES; ++s) {
|
|
1137
|
+
// find center of pixel for this scanline
|
|
1138
|
+
float scany = (float)(y*NSVG__SUBSAMPLES + s) + 0.5f;
|
|
1139
|
+
NSVGactiveEdge **step = &active;
|
|
1140
|
+
|
|
1141
|
+
// update all active edges;
|
|
1142
|
+
// remove all active edges that terminate before the center of this scanline
|
|
1143
|
+
while (*step) {
|
|
1144
|
+
NSVGactiveEdge *z = *step;
|
|
1145
|
+
if (z->ey <= scany) {
|
|
1146
|
+
*step = z->next; // delete from list
|
|
1147
|
+
// NSVG__assert(z->valid);
|
|
1148
|
+
nsvg__freeActive(r, z);
|
|
1149
|
+
} else {
|
|
1150
|
+
z->x += z->dx; // advance to position for current scanline
|
|
1151
|
+
step = &((*step)->next); // advance through list
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
// resort the list if needed
|
|
1156
|
+
for (;;) {
|
|
1157
|
+
int changed = 0;
|
|
1158
|
+
step = &active;
|
|
1159
|
+
while (*step && (*step)->next) {
|
|
1160
|
+
if ((*step)->x > (*step)->next->x) {
|
|
1161
|
+
NSVGactiveEdge* t = *step;
|
|
1162
|
+
NSVGactiveEdge* q = t->next;
|
|
1163
|
+
t->next = q->next;
|
|
1164
|
+
q->next = t;
|
|
1165
|
+
*step = q;
|
|
1166
|
+
changed = 1;
|
|
1167
|
+
}
|
|
1168
|
+
step = &(*step)->next;
|
|
1169
|
+
}
|
|
1170
|
+
if (!changed) break;
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
// insert all edges that start before the center of this scanline -- omit ones that also end on this scanline
|
|
1174
|
+
while (e < r->nedges && r->edges[e].y0 <= scany) {
|
|
1175
|
+
if (r->edges[e].y1 > scany) {
|
|
1176
|
+
NSVGactiveEdge* z = nsvg__addActive(r, &r->edges[e], scany);
|
|
1177
|
+
if (z == NULL) break;
|
|
1178
|
+
// find insertion point
|
|
1179
|
+
if (active == NULL) {
|
|
1180
|
+
active = z;
|
|
1181
|
+
} else if (z->x < active->x) {
|
|
1182
|
+
// insert at front
|
|
1183
|
+
z->next = active;
|
|
1184
|
+
active = z;
|
|
1185
|
+
} else {
|
|
1186
|
+
// find thing to insert AFTER
|
|
1187
|
+
NSVGactiveEdge* p = active;
|
|
1188
|
+
while (p->next && p->next->x < z->x)
|
|
1189
|
+
p = p->next;
|
|
1190
|
+
// at this point, p->next->x is NOT < z->x
|
|
1191
|
+
z->next = p->next;
|
|
1192
|
+
p->next = z;
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1195
|
+
e++;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
// now process all active edges in non-zero fashion
|
|
1199
|
+
if (active != NULL)
|
|
1200
|
+
nsvg__fillActiveEdges(r->scanline, r->width, active, maxWeight, &xmin, &xmax, fillRule);
|
|
1201
|
+
}
|
|
1202
|
+
// Blit
|
|
1203
|
+
if (xmin < 0) xmin = 0;
|
|
1204
|
+
if (xmax > r->width-1) xmax = r->width-1;
|
|
1205
|
+
if (xmin <= xmax) {
|
|
1206
|
+
nsvg__scanlineSolid(&r->bitmap[y * r->stride] + xmin*4, xmax-xmin+1, &r->scanline[xmin], xmin, y, tx,ty, scale, cache);
|
|
1207
|
+
}
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
static void nsvg__unpremultiplyAlpha(unsigned char* image, int w, int h, int stride)
|
|
1213
|
+
{
|
|
1214
|
+
int x,y;
|
|
1215
|
+
|
|
1216
|
+
// Unpremultiply
|
|
1217
|
+
for (y = 0; y < h; y++) {
|
|
1218
|
+
unsigned char *row = &image[y*stride];
|
|
1219
|
+
for (x = 0; x < w; x++) {
|
|
1220
|
+
int r = row[0], g = row[1], b = row[2], a = row[3];
|
|
1221
|
+
if (a != 0) {
|
|
1222
|
+
row[0] = (unsigned char)(r*255/a);
|
|
1223
|
+
row[1] = (unsigned char)(g*255/a);
|
|
1224
|
+
row[2] = (unsigned char)(b*255/a);
|
|
1225
|
+
}
|
|
1226
|
+
row += 4;
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
// Defringe
|
|
1231
|
+
for (y = 0; y < h; y++) {
|
|
1232
|
+
unsigned char *row = &image[y*stride];
|
|
1233
|
+
for (x = 0; x < w; x++) {
|
|
1234
|
+
int r = 0, g = 0, b = 0, a = row[3], n = 0;
|
|
1235
|
+
if (a == 0) {
|
|
1236
|
+
if (x-1 > 0 && row[-1] != 0) {
|
|
1237
|
+
r += row[-4];
|
|
1238
|
+
g += row[-3];
|
|
1239
|
+
b += row[-2];
|
|
1240
|
+
n++;
|
|
1241
|
+
}
|
|
1242
|
+
if (x+1 < w && row[7] != 0) {
|
|
1243
|
+
r += row[4];
|
|
1244
|
+
g += row[5];
|
|
1245
|
+
b += row[6];
|
|
1246
|
+
n++;
|
|
1247
|
+
}
|
|
1248
|
+
if (y-1 > 0 && row[-stride+3] != 0) {
|
|
1249
|
+
r += row[-stride];
|
|
1250
|
+
g += row[-stride+1];
|
|
1251
|
+
b += row[-stride+2];
|
|
1252
|
+
n++;
|
|
1253
|
+
}
|
|
1254
|
+
if (y+1 < h && row[stride+3] != 0) {
|
|
1255
|
+
r += row[stride];
|
|
1256
|
+
g += row[stride+1];
|
|
1257
|
+
b += row[stride+2];
|
|
1258
|
+
n++;
|
|
1259
|
+
}
|
|
1260
|
+
if (n > 0) {
|
|
1261
|
+
row[0] = (unsigned char)(r/n);
|
|
1262
|
+
row[1] = (unsigned char)(g/n);
|
|
1263
|
+
row[2] = (unsigned char)(b/n);
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
row += 4;
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
|
|
1272
|
+
static void nsvg__initPaint(NSVGcachedPaint* cache, NSVGpaint* paint, float opacity)
|
|
1273
|
+
{
|
|
1274
|
+
int i, j;
|
|
1275
|
+
NSVGgradient* grad;
|
|
1276
|
+
|
|
1277
|
+
cache->type = paint->type;
|
|
1278
|
+
|
|
1279
|
+
if (paint->type == NSVG_PAINT_COLOR) {
|
|
1280
|
+
cache->colors[0] = nsvg__applyOpacity(paint->color, opacity);
|
|
1281
|
+
return;
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
grad = paint->gradient;
|
|
1285
|
+
|
|
1286
|
+
cache->spread = grad->spread;
|
|
1287
|
+
memcpy(cache->xform, grad->xform, sizeof(float)*6);
|
|
1288
|
+
|
|
1289
|
+
if (grad->nstops == 0) {
|
|
1290
|
+
for (i = 0; i < 256; i++)
|
|
1291
|
+
cache->colors[i] = 0;
|
|
1292
|
+
} else if (grad->nstops == 1) {
|
|
1293
|
+
unsigned int color = nsvg__applyOpacity(grad->stops[0].color, opacity);
|
|
1294
|
+
for (i = 0; i < 256; i++)
|
|
1295
|
+
cache->colors[i] = color;
|
|
1296
|
+
} else {
|
|
1297
|
+
unsigned int ca, cb = 0;
|
|
1298
|
+
float ua, ub, du, u;
|
|
1299
|
+
int ia, ib, count;
|
|
1300
|
+
|
|
1301
|
+
ca = nsvg__applyOpacity(grad->stops[0].color, opacity);
|
|
1302
|
+
ua = nsvg__clampf(grad->stops[0].offset, 0, 1);
|
|
1303
|
+
ub = nsvg__clampf(grad->stops[grad->nstops-1].offset, ua, 1);
|
|
1304
|
+
ia = (int)(ua * 255.0f);
|
|
1305
|
+
ib = (int)(ub * 255.0f);
|
|
1306
|
+
for (i = 0; i < ia; i++) {
|
|
1307
|
+
cache->colors[i] = ca;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
for (i = 0; i < grad->nstops-1; i++) {
|
|
1311
|
+
ca = nsvg__applyOpacity(grad->stops[i].color, opacity);
|
|
1312
|
+
cb = nsvg__applyOpacity(grad->stops[i+1].color, opacity);
|
|
1313
|
+
ua = nsvg__clampf(grad->stops[i].offset, 0, 1);
|
|
1314
|
+
ub = nsvg__clampf(grad->stops[i+1].offset, 0, 1);
|
|
1315
|
+
ia = (int)(ua * 255.0f);
|
|
1316
|
+
ib = (int)(ub * 255.0f);
|
|
1317
|
+
count = ib - ia;
|
|
1318
|
+
if (count <= 0) continue;
|
|
1319
|
+
u = 0;
|
|
1320
|
+
du = 1.0f / (float)count;
|
|
1321
|
+
for (j = 0; j < count; j++) {
|
|
1322
|
+
cache->colors[ia+j] = nsvg__lerpRGBA(ca,cb,u);
|
|
1323
|
+
u += du;
|
|
1324
|
+
}
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
for (i = ib; i < 256; i++)
|
|
1328
|
+
cache->colors[i] = cb;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
/*
|
|
1334
|
+
static void dumpEdges(NSVGrasterizer* r, const char* name)
|
|
1335
|
+
{
|
|
1336
|
+
float xmin = 0, xmax = 0, ymin = 0, ymax = 0;
|
|
1337
|
+
NSVGedge *e = NULL;
|
|
1338
|
+
int i;
|
|
1339
|
+
if (r->nedges == 0) return;
|
|
1340
|
+
FILE* fp = fopen(name, "w");
|
|
1341
|
+
if (fp == NULL) return;
|
|
1342
|
+
|
|
1343
|
+
xmin = xmax = r->edges[0].x0;
|
|
1344
|
+
ymin = ymax = r->edges[0].y0;
|
|
1345
|
+
for (i = 0; i < r->nedges; i++) {
|
|
1346
|
+
e = &r->edges[i];
|
|
1347
|
+
xmin = nsvg__minf(xmin, e->x0);
|
|
1348
|
+
xmin = nsvg__minf(xmin, e->x1);
|
|
1349
|
+
xmax = nsvg__maxf(xmax, e->x0);
|
|
1350
|
+
xmax = nsvg__maxf(xmax, e->x1);
|
|
1351
|
+
ymin = nsvg__minf(ymin, e->y0);
|
|
1352
|
+
ymin = nsvg__minf(ymin, e->y1);
|
|
1353
|
+
ymax = nsvg__maxf(ymax, e->y0);
|
|
1354
|
+
ymax = nsvg__maxf(ymax, e->y1);
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
fprintf(fp, "<svg viewBox=\"%f %f %f %f\" xmlns=\"http://www.w3.org/2000/svg\">", xmin, ymin, (xmax - xmin), (ymax - ymin));
|
|
1358
|
+
|
|
1359
|
+
for (i = 0; i < r->nedges; i++) {
|
|
1360
|
+
e = &r->edges[i];
|
|
1361
|
+
fprintf(fp ,"<line x1=\"%f\" y1=\"%f\" x2=\"%f\" y2=\"%f\" style=\"stroke:#000;\" />", e->x0,e->y0, e->x1,e->y1);
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
for (i = 0; i < r->npoints; i++) {
|
|
1365
|
+
if (i+1 < r->npoints)
|
|
1366
|
+
fprintf(fp ,"<line x1=\"%f\" y1=\"%f\" x2=\"%f\" y2=\"%f\" style=\"stroke:#f00;\" />", r->points[i].x, r->points[i].y, r->points[i+1].x, r->points[i+1].y);
|
|
1367
|
+
fprintf(fp ,"<circle cx=\"%f\" cy=\"%f\" r=\"1\" style=\"fill:%s;\" />", r->points[i].x, r->points[i].y, r->points[i].flags == 0 ? "#f00" : "#0f0");
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
fprintf(fp, "</svg>");
|
|
1371
|
+
fclose(fp);
|
|
1372
|
+
}
|
|
1373
|
+
*/
|
|
1374
|
+
|
|
1375
|
+
void nsvgRasterize(NSVGrasterizer* r,
|
|
1376
|
+
NSVGimage* image, float tx, float ty, float scale,
|
|
1377
|
+
unsigned char* dst, int w, int h, int stride)
|
|
1378
|
+
{
|
|
1379
|
+
NSVGshape *shape = NULL;
|
|
1380
|
+
NSVGedge *e = NULL;
|
|
1381
|
+
NSVGcachedPaint cache;
|
|
1382
|
+
int i;
|
|
1383
|
+
int j;
|
|
1384
|
+
unsigned char paintOrder;
|
|
1385
|
+
|
|
1386
|
+
r->bitmap = dst;
|
|
1387
|
+
r->width = w;
|
|
1388
|
+
r->height = h;
|
|
1389
|
+
r->stride = stride;
|
|
1390
|
+
|
|
1391
|
+
if (w > r->cscanline) {
|
|
1392
|
+
r->cscanline = w;
|
|
1393
|
+
r->scanline = (unsigned char*)realloc(r->scanline, w);
|
|
1394
|
+
if (r->scanline == NULL) return;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
for (i = 0; i < h; i++)
|
|
1398
|
+
memset(&dst[i*stride], 0, w*4);
|
|
1399
|
+
|
|
1400
|
+
for (shape = image->shapes; shape != NULL; shape = shape->next) {
|
|
1401
|
+
if (!(shape->flags & NSVG_FLAGS_VISIBLE))
|
|
1402
|
+
continue;
|
|
1403
|
+
|
|
1404
|
+
for (j = 0; j < 3; j++) {
|
|
1405
|
+
paintOrder = (shape->paintOrder >> (2 * j)) & 0x03;
|
|
1406
|
+
|
|
1407
|
+
if (paintOrder == NSVG_PAINT_FILL && shape->fill.type != NSVG_PAINT_NONE) {
|
|
1408
|
+
nsvg__resetPool(r);
|
|
1409
|
+
r->freelist = NULL;
|
|
1410
|
+
r->nedges = 0;
|
|
1411
|
+
|
|
1412
|
+
nsvg__flattenShape(r, shape, scale);
|
|
1413
|
+
|
|
1414
|
+
// Scale and translate edges
|
|
1415
|
+
for (i = 0; i < r->nedges; i++) {
|
|
1416
|
+
e = &r->edges[i];
|
|
1417
|
+
e->x0 = tx + e->x0;
|
|
1418
|
+
e->y0 = (ty + e->y0) * NSVG__SUBSAMPLES;
|
|
1419
|
+
e->x1 = tx + e->x1;
|
|
1420
|
+
e->y1 = (ty + e->y1) * NSVG__SUBSAMPLES;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
// Rasterize edges
|
|
1424
|
+
if (r->nedges != 0)
|
|
1425
|
+
qsort(r->edges, r->nedges, sizeof(NSVGedge), nsvg__cmpEdge);
|
|
1426
|
+
|
|
1427
|
+
// now, traverse the scanlines and find the intersections on each scanline, use non-zero rule
|
|
1428
|
+
nsvg__initPaint(&cache, &shape->fill, shape->opacity);
|
|
1429
|
+
|
|
1430
|
+
nsvg__rasterizeSortedEdges(r, tx,ty,scale, &cache, shape->fillRule);
|
|
1431
|
+
}
|
|
1432
|
+
if (paintOrder == NSVG_PAINT_STROKE && shape->stroke.type != NSVG_PAINT_NONE && (shape->strokeWidth * scale) > 0.01f) {
|
|
1433
|
+
nsvg__resetPool(r);
|
|
1434
|
+
r->freelist = NULL;
|
|
1435
|
+
r->nedges = 0;
|
|
1436
|
+
|
|
1437
|
+
nsvg__flattenShapeStroke(r, shape, scale);
|
|
1438
|
+
|
|
1439
|
+
// dumpEdges(r, "edge.svg");
|
|
1440
|
+
|
|
1441
|
+
// Scale and translate edges
|
|
1442
|
+
for (i = 0; i < r->nedges; i++) {
|
|
1443
|
+
e = &r->edges[i];
|
|
1444
|
+
e->x0 = tx + e->x0;
|
|
1445
|
+
e->y0 = (ty + e->y0) * NSVG__SUBSAMPLES;
|
|
1446
|
+
e->x1 = tx + e->x1;
|
|
1447
|
+
e->y1 = (ty + e->y1) * NSVG__SUBSAMPLES;
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
// Rasterize edges
|
|
1451
|
+
if (r->nedges != 0)
|
|
1452
|
+
qsort(r->edges, r->nedges, sizeof(NSVGedge), nsvg__cmpEdge);
|
|
1453
|
+
|
|
1454
|
+
// now, traverse the scanlines and find the intersections on each scanline, use non-zero rule
|
|
1455
|
+
nsvg__initPaint(&cache, &shape->stroke, shape->opacity);
|
|
1456
|
+
|
|
1457
|
+
nsvg__rasterizeSortedEdges(r, tx,ty,scale, &cache, NSVG_FILLRULE_NONZERO);
|
|
1458
|
+
}
|
|
1459
|
+
}
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
nsvg__unpremultiplyAlpha(dst, w, h, stride);
|
|
1463
|
+
|
|
1464
|
+
r->bitmap = NULL;
|
|
1465
|
+
r->width = 0;
|
|
1466
|
+
r->height = 0;
|
|
1467
|
+
r->stride = 0;
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
#endif // NANOSVGRAST_IMPLEMENTATION
|
|
1471
|
+
|
|
1472
|
+
#endif // NANOSVGRAST_H
|