summaryrefslogtreecommitdiffhomepage
path: root/src/textures.c
diff options
context:
space:
mode:
authorRay <[email protected]>2018-04-08 22:46:44 +0200
committerGitHub <[email protected]>2018-04-08 22:46:44 +0200
commitcd616258c6875d422cf20899f0daf89ba1d8e84a (patch)
tree7eef095832704c4bce4f69bbe378d10409f92472 /src/textures.c
parent9e7dedf5af6ea3f70196e86865b8a7e676b419b2 (diff)
parent1dbce352479f64748879fecb9df646654cd92229 (diff)
downloadraylib-cd616258c6875d422cf20899f0daf89ba1d8e84a.tar.gz
raylib-cd616258c6875d422cf20899f0daf89ba1d8e84a.zip
Merge pull request #522 from a3f/master
Refactor all #define SUPPORT_* into a config.h
Diffstat (limited to 'src/textures.c')
-rw-r--r--src/textures.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/textures.c b/src/textures.c
index 8a562887..43453f73 100644
--- a/src/textures.c
+++ b/src/textures.c
@@ -52,17 +52,7 @@
* 3. This notice may not be removed or altered from any source distribution.
*
**********************************************************************************************/
-
-// Default configuration flags (supported features)
-//-------------------------------------------------
-#define SUPPORT_FILEFORMAT_PNG
-#define SUPPORT_FILEFORMAT_DDS
-#define SUPPORT_FILEFORMAT_HDR
-#define SUPPORT_FILEFORMAT_KTX
-#define SUPPORT_FILEFORMAT_ASTC
-#define SUPPORT_IMAGE_MANIPULATION
-#define SUPPORT_IMAGE_GENERATION
-//-------------------------------------------------
+#include "config.h"
#include "raylib.h"