updated URL of forum and table in readme file
[neverball] / share / image.h
1 #ifndef IMAGE_H
2 #define IMAGE_H
3
4 #include <SDL.h>
5 #include <SDL_ttf.h>
6
7 /*---------------------------------------------------------------------------*/
8
9 void   image_snap(char *);
10 void   image_size(int *, int *, int, int);
11
12 GLuint make_image_from_surf(int *, int *, SDL_Surface *);
13 GLuint make_image_from_file(int *, int *,
14                             int *, int *, const char *);
15 GLuint make_image_from_font(int *, int *,
16                             int *, int *, const char *, TTF_Font *, int);
17
18 /*---------------------------------------------------------------------------*/
19
20 #endif