| 1009 | #endif |
| 1010 | |
| 1011 | static void* stbi__malloc(size_t size) { |
| 1012 | return STBI_MALLOC(size); |
| 1013 | } |
| 1014 | |
| 1015 | // stb_image uses ints pervasively, including for offset calculations. |
| 1016 | // therefore the largest decoded image size we can support with the |
no outgoing calls
no test coverage detected