From 80191b41352ad20493fb62e8f3683d69133d0d24 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 14 Feb 2013 18:03:09 -0500 Subject: Initial commit. --- (limited to 'src/image.c') diff --git a/src/image.c b/src/image.c new file mode 100644 index 0000000..557e1de --- /dev/null +++ b/src/image.c @@ -0,0 +1,22 @@ +#include +#include +#include "logging.h" +#include "image.h" + +SDL_Surface * +load_png(const char *path) +{ + SDL_RWops *rwops; + SDL_Surface *img; + + debug("Loading PNG image \"%s\"...", path); + + rwops = SDL_RWFromFile(path, "rb"); + img = IMG_LoadPNG_RW(rwops); + if (!img) { + err(1, "Failed to load image \"%s\" (%s)", + path, IMG_GetError()); + } + + return img; +} -- cgit v0.9.1