Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 490 Bytes

IMG_Animation.md

File metadata and controls

28 lines (19 loc) · 490 Bytes
(This function is part of SDL_image, a separate library from SDL.)

IMG_Animation

Animated image support.

Header File

Defined in <SDL_image.h>

Syntax

typedef struct IMG_Animation
{
	int w, h;
	int count;
	SDL_Surface **frames;
	int *delays;
} IMG_Animation;

Remarks

Currently only animated GIFs are supported.


CategoryAPI, CategoryAPIStruct