Reorganized texture functions

Removed ImageAlphaMask() dependency on [text] LoadBMFont()
This commit is contained in:
raysan5 2020-05-09 12:05:00 +02:00
parent 4e29294caa
commit 959447d8ed
4 changed files with 1357 additions and 1326 deletions

View file

@ -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