aboutsummaryrefslogtreecommitdiff
path: root/loader.c
blob: 3615908ea0c745fa477b552ccb8e8f736a8f8256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <SDL2/SDL.h>
#include <string.h>

SDL_Texture* imv_load_png(SDL_Renderer *r, const char* path);
SDL_Texture* imv_load_jpeg(SDL_Renderer *r, const char* path);

SDL_Texture* imv_load_image(SDL_Renderer *r, const char* path)
{
  if(!path)
    return NULL;

  const char* ext = strrchr(path, '.');

  if(!ext)
    return NULL;

  if(strcasecmp(ext, ".png") == 0) {
    return imv_load_png(r, path);
  } else if(strcasecmp(ext, ".jpeg") == 0 || strcasecmp(ext, ".jpg") == 0) {
    return imv_load_jpeg(r, path);
  }

  fprintf(stderr,
      "Could not determine filetype of '%s' from its extension.\n",
      path);
  return NULL;
}