Image backends don't have state.

Remove unneeded prototypes.
This commit is contained in:
Themaister 2014-05-11 11:22:09 +02:00
parent fda33fec90
commit 91a0073f7d
3 changed files with 2 additions and 4 deletions

View File

@ -319,7 +319,7 @@ ifeq ($(HAVE_FREETYPE), 1)
endif
ifeq ($(HAVE_SDL_IMAGE), 1)
OBJ += gfx/image/image_sdl.o
OBJ += gfx/image/image_sdl.o
LIBS += $(SDL_IMAGE_LIBS)
DEFINES += $(SDL_IMAGE_CFLAGS)
endif

View File

@ -147,7 +147,7 @@ ifeq ($(HAVE_OPENGL), 1)
endif
ifeq ($(HAVE_SDL_IMAGE), 1)
OBJ += gfx/image/image_sdl.o
OBJ += gfx/image/image_sdl.o
LIBS += -lSDL_image
DEFINES += -DHAVE_SDL_IMAGE
endif

View File

@ -51,10 +51,8 @@ extern const image_ctx_driver_t image_ctx_ps3;
extern const image_ctx_driver_t image_ctx_sdl;
extern const image_ctx_driver_t image_ctx_rpng;
const void *image_ctx_find_driver(const char *ident);
void find_prev_image_driver(void);
void find_next_image_driver(void);
void find_image_driver(void);
const void *image_ctx_init_first(void);
#endif