#include <common/main.h>
Go to the source code of this file.
Data Structures | |
struct | gif_ty |
Enumerations | |
enum | gif_mode_ty { gif_mode_rdonly, gif_mode_rdwr } |
Functions | |
gif_ty * | gif_open (const char *path, int mode) |
void | gif_close (gif_ty *) |
gif_ty * | gif_create (const char *path, int size_x, int size_y) |
void | gif_rename (gif_ty *, const char *) |
int | gif_pixel_get (gif_ty *gp, int x, int y) |
void | gif_pixel_set (gif_ty *gp, int x, int y, int color) |
void | gif_colormap_get (gif_ty *, int, int *, int *, int *) |
void | gif_colormap_set (gif_ty *, int, int, int, int) |
void | gif_mime (gif_ty *) |
void | gif_line (gif_ty *gp, int x1, int y1, int x2, int y2, int color) |
void | gif_rect (gif_ty *gp, int x1, int y1, int x2, int y2, int color) |
void | gif_text (gif_ty *gp, int x, int y, const char *text, int color) |
enum gif_mode_ty |
void gif_close | ( | gif_ty * | ) |
void gif_colormap_get | ( | gif_ty * | , | |
int | , | |||
int * | , | |||
int * | , | |||
int * | ||||
) |
void gif_colormap_set | ( | gif_ty * | , | |
int | , | |||
int | , | |||
int | , | |||
int | ||||
) |
gif_ty* gif_create | ( | const char * | path, | |
int | size_x, | |||
int | size_y | |||
) |
void gif_line | ( | gif_ty * | gp, | |
int | x1, | |||
int | y1, | |||
int | x2, | |||
int | y2, | |||
int | color | |||
) |
void gif_mime | ( | gif_ty * | ) |
gif_ty* gif_open | ( | const char * | path, | |
int | mode | |||
) |
int gif_pixel_get | ( | gif_ty * | gp, | |
int | x, | |||
int | y | |||
) |
void gif_pixel_set | ( | gif_ty * | gp, | |
int | x, | |||
int | y, | |||
int | color | |||
) |
void gif_rect | ( | gif_ty * | gp, | |
int | x1, | |||
int | y1, | |||
int | x2, | |||
int | y2, | |||
int | color | |||
) |
void gif_rename | ( | gif_ty * | , | |
const char * | ||||
) |
void gif_text | ( | gif_ty * | gp, | |
int | x, | |||
int | y, | |||
const char * | text, | |||
int | color | |||
) |