Demonstrate faulty path_corner traversal
[neverball] / share / image.h
1 #ifndef IMAGE_H
2 #define IMAGE_H
3
4 #include <SDL.h>
5 #include <SDL_ttf.h>
6
7 #include "glext.h"
8 #include "base_image.h"
9
10 /*---------------------------------------------------------------------------*/
11
12 void   image_snap(const char *);
13
14 GLuint make_image_from_file(const char *);
15 GLuint make_image_from_font(int *, int *,
16                             int *, int *, const char *, TTF_Font *);
17
18 SDL_Surface *load_surface(const char *);
19
20 /*---------------------------------------------------------------------------*/
21
22 #endif