SDL sdl_image download link (dev c++)
Hello guys! :)
Please give me a download link for a (working) sdl_image dev-c++ package. (.a and the .h if I need them)
Thank you very much! :)
I posted a download link here, your probably going to have to build the lib yourself as only MSVC binaries are provided for Win32
okay guys! Could you give me a SDL_opengl download link(dev c++)? Please! Goggle didn'T help me :-/
Google Devpakages and it shoudl pop up. I think the link is <a href="http://www.devpaks.org>www.devpaks.org.
It has a buncha different libraries in DevPaks.
It has a buncha different libraries in DevPaks.
Thank you! But I still get:
[Linker error] undefined reference to `IMG_Load_RW'
if I use:
SDL_Surface *g_ImgSurf; //surface to store the image
SDL_RWops *g_RWop = SDL_RWFromMem(g_FileBuff, g_FileSize);
g_ImgSurf = IMG_Load_RW(g_RWop, 0);
:-/
[Linker error] undefined reference to `IMG_Load_RW'
if I use:
SDL_Surface *g_ImgSurf; //surface to store the image
SDL_RWops *g_RWop = SDL_RWFromMem(g_FileBuff, g_FileSize);
g_ImgSurf = IMG_Load_RW(g_RWop, 0);
:-/
You must add the SDL_image library to your linker's options by putting :
-lSDL_image
-lSDL_image
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement