summaryrefslogtreecommitdiffhomepage
path: root/src/text.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2016-11-16 18:46:13 +0100
committerraysan5 <[email protected]>2016-11-16 18:46:13 +0100
commit6d1b712a9678a7e1d57d994ab51afafbe06ec5fb (patch)
treea42886c764a5b081d58b9a87ddbfc760febb7b61 /src/text.c
parent9d3ad52160a0e32271a8e3d76d9ea95e9bd0684a (diff)
downloadraylib-6d1b712a9678a7e1d57d994ab51afafbe06ec5fb.tar.gz
raylib-6d1b712a9678a7e1d57d994ab51afafbe06ec5fb.zip
Reviewed modules comments
Diffstat (limited to 'src/text.c')
-rw-r--r--src/text.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/text.c b/src/text.c
index 72d273d4..d752f1cb 100644
--- a/src/text.c
+++ b/src/text.c
@@ -4,6 +4,12 @@
*
* Basic functions to load SpriteFonts and draw Text
*
+* External libs:
+* stb_truetype - Load TTF file and rasterize characters data
+*
+* Module Configuration Flags:
+* ...
+*
* Copyright (c) 2014-2016 Ramon Santamaria (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
@@ -33,7 +39,7 @@
#include "utils.h" // Required for: GetExtension(), GetNextPOT()
// Following libs are used on LoadTTF()
-//#define STBTT_STATIC
+#define STBTT_STATIC // Define stb_truetype functions static to this module
#define STB_TRUETYPE_IMPLEMENTATION
#include "external/stb_truetype.h" // Required for: stbtt_BakeFontBitmap()