summaryrefslogtreecommitdiffhomepage
path: root/src/config.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-05-09 12:05:00 +0200
committerraysan5 <[email protected]>2020-05-09 12:05:00 +0200
commit959447d8ed69e63b279bc5b72354c9d14a266e8f (patch)
treed5f948766f9f893dfb20eaa6e4cf6137be447539 /src/config.h
parent4e29294caa2ff80bb3dadbeb8bb495b5150fd764 (diff)
downloadraylib-959447d8ed69e63b279bc5b72354c9d14a266e8f.tar.gz
raylib-959447d8ed69e63b279bc5b72354c9d14a266e8f.zip
Reorganized texture functions
Removed ImageAlphaMask() dependency on [text] LoadBMFont()
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/config.h b/src/config.h
index ebaa8a62..7650e08c 100644
--- a/src/config.h
+++ b/src/config.h
@@ -98,11 +98,14 @@
// Support image export functionality (.png, .bmp, .tga, .jpg)
#define SUPPORT_IMAGE_EXPORT 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(), ImageAlphaMask(), ImageToPOT()
-#define SUPPORT_IMAGE_MANIPULATION 1
+
// 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()
+#define SUPPORT_IMAGE_MANIPULATION 1
+// Support drawing on image (software rendering)
+#define SUPPORT_IMAGE_DRAWING 1
//------------------------------------------------------------------------------------
// Module: text - Configuration Flags