mirror of https://github.com/Chlumsky/msdfgen.git
Version 1.9
This commit is contained in:
parent
acb01df098
commit
0f9c93e686
|
|
@ -18,6 +18,7 @@
|
|||
*.VC.opendb
|
||||
*.VC.db
|
||||
/bin/*.lib
|
||||
/bin/msdfgen
|
||||
output.png
|
||||
render.png
|
||||
out/
|
||||
|
|
|
|||
|
|
@ -1,4 +1,11 @@
|
|||
|
||||
## Version 1.9 (2021-05-28)
|
||||
|
||||
- Error correction of multi-channel distance fields has been completely reworked
|
||||
- Added new edge coloring strategy that optimizes colors based on distances between edges
|
||||
- Added some minor functions for the library API
|
||||
- Minor code refactor and optimizations
|
||||
|
||||
## Version 1.8 (2020-10-17)
|
||||
|
||||
- Integrated the Skia library into the project, which is used to preprocess the shape geometry and eliminate any self-intersections and other irregularities previously unsupported by the software
|
||||
|
|
|
|||
BIN
Msdfgen.aps
BIN
Msdfgen.aps
Binary file not shown.
BIN
Msdfgen.rc
BIN
Msdfgen.rc
Binary file not shown.
4
main.cpp
4
main.cpp
|
|
@ -1,8 +1,8 @@
|
|||
|
||||
/*
|
||||
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.8 (2020-10-17) - standalone console program
|
||||
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.9 (2021-05-28) - standalone console program
|
||||
* --------------------------------------------------------------------------------------------
|
||||
* A utility by Viktor Chlumsky, (c) 2014 - 2020
|
||||
* A utility by Viktor Chlumsky, (c) 2014 - 2021
|
||||
*
|
||||
*/
|
||||
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
#pragma once
|
||||
|
||||
/*
|
||||
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.8 (2020-10-17) - extensions
|
||||
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.9 (2021-05-28) - extensions
|
||||
* ----------------------------------------------------------------------------
|
||||
* A utility by Viktor Chlumsky, (c) 2014 - 2020
|
||||
* A utility by Viktor Chlumsky, (c) 2014 - 2021
|
||||
*
|
||||
* The extension module provides ways to easily load input and save output using popular formats.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
#pragma once
|
||||
|
||||
/*
|
||||
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.8 (2020-10-17)
|
||||
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.9 (2021-05-28)
|
||||
* ---------------------------------------------------------------
|
||||
* A utility by Viktor Chlumsky, (c) 2014 - 2020
|
||||
* A utility by Viktor Chlumsky, (c) 2014 - 2021
|
||||
*
|
||||
* The technique used to generate multi-channel distance fields in this code
|
||||
* has been developed by Viktor Chlumsky in 2014 for his master's thesis,
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
#include "core/save-tiff.h"
|
||||
#include "core/shape-description.h"
|
||||
|
||||
#define MSDFGEN_VERSION "1.8"
|
||||
#define MSDFGEN_VERSION "1.9"
|
||||
|
||||
namespace msdfgen {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue