From ad8509732ca2a235c1735fae739577a59e17cf1c Mon Sep 17 00:00:00 2001 From: Ahmad Fatoum Date: Sun, 20 May 2018 23:03:04 +0200 Subject: CMake: Fix (Add?) Android support Not sure if this ever worked, but now it at least compiles. --- src/utils.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/utils.c') diff --git a/src/utils.c b/src/utils.c index 9d9d8b55..cd75e695 100644 --- a/src/utils.c +++ b/src/utils.c @@ -57,6 +57,12 @@ #include // Required for: va_list, va_start(), vfprintf(), va_end() #include // Required for: strlen(), strrchr(), strcmp() +/* This should be in , but Travis doesn't find it... */ +FILE *funopen(const void *cookie, int (*readfn)(void *, char *, int), + int (*writefn)(void *, const char *, int), + fpos_t (*seekfn)(void *, fpos_t, int), int (*closefn)(void *)); + + #if defined(PLATFORM_DESKTOP) || defined(PLATFORM_RPI) #define STB_IMAGE_WRITE_IMPLEMENTATION #include "external/stb_image_write.h" // Required for: stbi_write_bmp(), stbi_write_png() -- cgit v1.2.3 From e025e62445913bf1ec9cf075eaaf1dc7374da83c Mon Sep 17 00:00:00 2001 From: Ahmad Fatoum Date: Thu, 12 Apr 2018 19:31:53 +0200 Subject: cmake: Fix PLATFORM_WEB build Did this ever work? Surely, doesn't look like it... --- src/utils.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'src/utils.c') diff --git a/src/utils.c b/src/utils.c index cd75e695..74780680 100644 --- a/src/utils.c +++ b/src/utils.c @@ -143,31 +143,27 @@ void TraceLog(int msgType, const char *text, ...) va_end(args); if (msgType == LOG_ERROR) exit(1); // If LOG_ERROR message, exit program - + #endif // SUPPORT_TRACELOG } -#if defined(SUPPORT_SAVE_BMP) // Creates a BMP image file from an array of pixel data void SaveBMP(const char *fileName, unsigned char *imgData, int width, int height, int compSize) { -#if defined(PLATFORM_DESKTOP) || defined(PLATFORM_RPI) +#if defined(SUPPORT_SAVE_BMP) && (defined(PLATFORM_DESKTOP) || defined(PLATFORM_RPI)) stbi_write_bmp(fileName, width, height, compSize, imgData); TraceLog(LOG_INFO, "BMP Image saved: %s", fileName); #endif } -#endif -#if defined(SUPPORT_SAVE_PNG) // Creates a PNG image file from an array of pixel data void SavePNG(const char *fileName, unsigned char *imgData, int width, int height, int compSize) { -#if defined(PLATFORM_DESKTOP) || defined(PLATFORM_RPI) +#if defined(SUPPORT_SAVE_PNG) && (defined(PLATFORM_DESKTOP) || defined(PLATFORM_RPI)) stbi_write_png(fileName, width, height, compSize, imgData, width*compSize); TraceLog(LOG_INFO, "PNG Image saved: %s", fileName); #endif } -#endif // Keep track of memory allocated // NOTE: mallocType defines the type of data allocated -- cgit v1.2.3