summaryrefslogtreecommitdiffhomepage
path: root/src/rtextures.c
diff options
context:
space:
mode:
authorRay <[email protected]>2023-05-01 14:04:22 +0200
committerRay <[email protected]>2023-05-01 14:04:22 +0200
commit7d68aa686974347cefe0ef481c835e3d60bdc4b9 (patch)
tree2542aba007b5d41956932ce47c1cb56e5a34ce42 /src/rtextures.c
parenta4a5a798bdb546646b607b3348a8f2d43b161a09 (diff)
downloadraylib-7d68aa686974347cefe0ef481c835e3d60bdc4b9.tar.gz
raylib-7d68aa686974347cefe0ef481c835e3d60bdc4b9.zip
REVIEWED: Modules description layout
Diffstat (limited to 'src/rtextures.c')
-rw-r--r--src/rtextures.c53
1 files changed, 26 insertions, 27 deletions
diff --git a/src/rtextures.c b/src/rtextures.c
index 5e39260e..5c8029e5 100644
--- a/src/rtextures.c
+++ b/src/rtextures.c
@@ -3,37 +3,36 @@
* rtextures - Basic functions to load and draw textures
*
* CONFIGURATION:
+* #define SUPPORT_MODULE_RTEXTURES
+* rtextures module is included in the build
*
-* #define SUPPORT_MODULE_RTEXTURES
-* rtextures module is included in the build
+* #define SUPPORT_FILEFORMAT_BMP
+* #define SUPPORT_FILEFORMAT_PNG
+* #define SUPPORT_FILEFORMAT_TGA
+* #define SUPPORT_FILEFORMAT_JPG
+* #define SUPPORT_FILEFORMAT_GIF
+* #define SUPPORT_FILEFORMAT_QOI
+* #define SUPPORT_FILEFORMAT_PSD
+* #define SUPPORT_FILEFORMAT_HDR
+* #define SUPPORT_FILEFORMAT_PIC
+* #define SUPPORT_FILEFORMAT_PNM
+* #define SUPPORT_FILEFORMAT_DDS
+* #define SUPPORT_FILEFORMAT_PKM
+* #define SUPPORT_FILEFORMAT_KTX
+* #define SUPPORT_FILEFORMAT_PVR
+* #define SUPPORT_FILEFORMAT_ASTC
+* Select desired fileformats to be supported for image data loading. Some of those formats are
+* supported by default, to remove support, just comment unrequired #define in this module
*
-* #define SUPPORT_FILEFORMAT_BMP
-* #define SUPPORT_FILEFORMAT_PNG
-* #define SUPPORT_FILEFORMAT_TGA
-* #define SUPPORT_FILEFORMAT_JPG
-* #define SUPPORT_FILEFORMAT_GIF
-* #define SUPPORT_FILEFORMAT_QOI
-* #define SUPPORT_FILEFORMAT_PSD
-* #define SUPPORT_FILEFORMAT_HDR
-* #define SUPPORT_FILEFORMAT_PIC
-* #define SUPPORT_FILEFORMAT_PNM
-* #define SUPPORT_FILEFORMAT_DDS
-* #define SUPPORT_FILEFORMAT_PKM
-* #define SUPPORT_FILEFORMAT_KTX
-* #define SUPPORT_FILEFORMAT_PVR
-* #define SUPPORT_FILEFORMAT_ASTC
-* Select desired fileformats to be supported for image data loading. Some of those formats are
-* supported by default, to remove support, just comment unrequired #define in this module
+* #define SUPPORT_IMAGE_EXPORT
+* Support image export in multiple file formats
*
-* #define SUPPORT_IMAGE_EXPORT
-* Support image export in multiple file formats
+* #define SUPPORT_IMAGE_MANIPULATION
+* Support multiple image editing functions to scale, adjust colors, flip, draw on images, crop...
+* If not defined only some image editing functions supported: ImageFormat(), ImageAlphaMask(), ImageResize*()
*
-* #define SUPPORT_IMAGE_MANIPULATION
-* Support multiple image editing functions to scale, adjust colors, flip, draw on images, crop...
-* If not defined only some image editing functions supported: ImageFormat(), ImageAlphaMask(), ImageResize*()
-*
-* #define SUPPORT_IMAGE_GENERATION
-* Support procedural image generation functionality (gradient, spot, perlin-noise, cellular)
+* #define SUPPORT_IMAGE_GENERATION
+* Support procedural image generation functionality (gradient, spot, perlin-noise, cellular)
*
* DEPENDENCIES:
* stb_image - Multiple image formats loading (JPEG, PNG, BMP, TGA, PSD, GIF, PIC)