├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Readme.md ├── msdf.c ├── msdf.h ├── sample ├── fonts │ ├── Roboto-Regular.ttf │ └── RobotoLicense.txt ├── sample.c └── svpng.h └── stb_truetype.h /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .vscode 3 | .DS_Store -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjako/msdf_c/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjako/msdf_c/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjako/msdf_c/HEAD/Readme.md -------------------------------------------------------------------------------- /msdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjako/msdf_c/HEAD/msdf.c -------------------------------------------------------------------------------- /msdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjako/msdf_c/HEAD/msdf.h -------------------------------------------------------------------------------- /sample/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjako/msdf_c/HEAD/sample/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /sample/fonts/RobotoLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjako/msdf_c/HEAD/sample/fonts/RobotoLicense.txt -------------------------------------------------------------------------------- /sample/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjako/msdf_c/HEAD/sample/sample.c -------------------------------------------------------------------------------- /sample/svpng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjako/msdf_c/HEAD/sample/svpng.h -------------------------------------------------------------------------------- /stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjako/msdf_c/HEAD/stb_truetype.h --------------------------------------------------------------------------------