Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5131 clevermous 1
 
2
3
 
4
http://tamale.net/SDL_anim/
5
6
 
7
This library supports PNG anim files.
8
9
 
10
#include "SDL_anim.h"
11
12
 
13
	int Anim_Free( SDL_Animation *anim );
14
	int Anim_GetFrameNum( float start, float now );
15
	int Anim_GetFrameRect( int frame, SDL_Rect *rect );
16
	int Anim_BlitFrame( SDL_Surface dest, float start, float now );
17
	int Anim_BlitFrameNum( SDL_Surface dest, int frame );
18
	int Anim_DisplayFormat( SDL_Animation *anim );
19
20
 
21
22
 
23
	`makeanim' creates PNG anim files.
24
25
 
26
	libpng http://www.cdrom.com/pub/png/
27
	zlib http://www.cdrom.com/pub/infozip/zlib/
28
29
 
30
"LICENSE" for details.
31
32
 
33
34
 
35