Skip to content

Commit

Permalink
stb_truetype version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Barrett committed Jul 12, 2017
1 parent 9a2e92e commit 38479bc
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions stb_truetype.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
// stb_truetype.h - v1.15 - public domain
// stb_truetype.h - v1.16 - public domain
// authored from 2009-2016 by Sean Barrett / RAD Game Tools
//
// This library processes TrueType files:
// parse files
// extract glyph metrics
// extract glyph shapes
// render glyphs to one-channel bitmaps with antialiasing (box filter)
// render glyphs to one-channel SDF bitmaps (signed-distance field/function)
//
// Todo:
// non-MS cmaps
Expand All @@ -28,7 +29,7 @@
// github:IntellectualKitty
//
// Bug/warning reports/fixes:
// "Zer" on mollyrocket (with fix)
// "Zer" on mollyrocket
// Cass Everitt
// stoiko (Haemimont Games)
// Brian Hook
Expand All @@ -54,6 +55,7 @@
//
// VERSION HISTORY
//
// 1.16 (2017-07-12) SDF support
// 1.15 (2017-03-03) make more arguments const
// 1.14 (2017-01-16) num-fonts-in-TTC function
// 1.13 (2017-01-02) support OpenType fonts, certain Apple fonts
Expand Down Expand Up @@ -4444,6 +4446,10 @@ STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char *s1, int len1, const

// FULL VERSION HISTORY
//
// 1.16 (2017-07-12) SDF support
// 1.15 (2017-03-03) make more arguments const
// 1.14 (2017-01-16) num-fonts-in-TTC function
// 1.13 (2017-01-02) support OpenType fonts, certain Apple fonts
// 1.12 (2016-10-25) suppress warnings about casting away const with -Wcast-qual
// 1.11 (2016-04-02) fix unused-variable warning
// 1.10 (2016-04-02) allow user-defined fabs() replacement
Expand Down

0 comments on commit 38479bc

Please sign in to comment.