summaryrefslogtreecommitdiffhomepage
path: root/src/config.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-05-09 12:38:33 +0200
committerraysan5 <[email protected]>2020-05-09 12:38:33 +0200
commit7efed56b664d3caf8af01ae017fb3585123997f6 (patch)
treebeeec17eb9f5f31b27561b3b145db0ade3ac1181 /src/config.h
parent7a1d3d807f0840a640642ab4c72895d5eac7eeb6 (diff)
downloadraylib-7efed56b664d3caf8af01ae017fb3585123997f6.tar.gz
raylib-7efed56b664d3caf8af01ae017fb3585123997f6.zip
Added [text] flag: SUPPORT_TEXT_MANIPULATION
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index 7650e08c..5b28a934 100644
--- a/src/config.h
+++ b/src/config.h
@@ -102,7 +102,7 @@
// Support procedural image generation functionality (gradient, spot, perlin-noise, cellular)
#define SUPPORT_IMAGE_GENERATION 1
// Support multiple image editing functions to scale, adjust colors, flip, draw on images, crop...
-// If not defined only three image editing functions supported: ImageFormat(), ImageCrop(), ImageToPOT()
+// If not defined, still some functions are supported: ImageFormat(), ImageCrop(), ImageToPOT()
#define SUPPORT_IMAGE_MANIPULATION 1
// Support drawing on image (software rendering)
#define SUPPORT_IMAGE_DRAWING 1
@@ -117,6 +117,10 @@
#define SUPPORT_FILEFORMAT_FNT 1
#define SUPPORT_FILEFORMAT_TTF 1
+// Support text management functions
+// If not defined, still some functions are supported: TextLength(), TextFormat()
+#define SUPPORT_TEXT_MANIPULATION 1
+
//------------------------------------------------------------------------------------
// Module: models - Configuration Flags
//------------------------------------------------------------------------------------