diff options
| author | raysan5 <[email protected]> | 2020-05-09 12:05:00 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-05-09 12:05:00 +0200 |
| commit | 959447d8ed69e63b279bc5b72354c9d14a266e8f (patch) | |
| tree | d5f948766f9f893dfb20eaa6e4cf6137be447539 /src/config.h | |
| parent | 4e29294caa2ff80bb3dadbeb8bb495b5150fd764 (diff) | |
| download | raylib-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.h | 9 |
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 |
