msdfgen-ext.h 656 B

1234567891011121314151617181920212223
  1. #pragma once
  2. /*
  3. * MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.7 (2020-03-07) - extensions
  4. * ----------------------------------------------------------------------------
  5. * A utility by Viktor Chlumsky, (c) 2014 - 2020
  6. *
  7. * The extension module provides ways to easily load input and save output using popular formats.
  8. *
  9. * Third party dependencies in extension module:
  10. * - FreeType 2
  11. * (to load input font files)
  12. * - TinyXML 2 by Lee Thomason
  13. * (to aid in parsing input SVG files)
  14. * - LodePNG by Lode Vandevenne
  15. * (to save output PNG images)
  16. *
  17. */
  18. #include "ext/save-png.h"
  19. #include "ext/import-svg.h"
  20. #include "ext/import-font.h"