Load a TGA image directly.
Defined in <SDL3_image/SDL_image.h>
SDL_Surface * IMG_LoadTGA_IO(SDL_IOStream *src);
SDL_IOStream * | src | an SDL_IOStream to load image data from. |
(SDL_Surface *) Returns SDL surface, or NULL on error.
If you know you definitely have a TGA image, you can call this function, which will skip SDL_image's file format detection routines. Generally it's better to use the abstract interfaces; also, there is only an SDL_IOStream interface available here.
This function is available since SDL_image 3.0.0.