Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IMB_anim5.h « intern « imbuf « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 245b3b9a9be3f8a00bee8226a94b6531e49bf117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* IMB_anim.h */
#ifndef IMB_ANIM5_H
#define IMB_ANIM5_H

struct anim;

/**
 *
 * @attention Defined in anim5.c
 */
int nextanim5(struct anim * anim);
int rewindanim5(struct anim * anim);
int startanim5(struct anim * anim);
void free_anim_anim5(struct anim * anim);
struct ImBuf * anim5_fetchibuf(struct anim * anim);


#endif