Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/intern/wm_playanim.c
| Show First 20 Lines • Show All 229 Lines • ▼ Show 20 Lines | |||||
| typedef struct PlayAnimPict { | typedef struct PlayAnimPict { | ||||
| struct PlayAnimPict *next, *prev; | struct PlayAnimPict *next, *prev; | ||||
| uchar *mem; | uchar *mem; | ||||
| int size; | int size; | ||||
| const char *name; | const char *name; | ||||
| struct ImBuf *ibuf; | struct ImBuf *ibuf; | ||||
| struct anim *anim; | struct anim *anim; | ||||
| int frame; | int frame; | ||||
| int IB_flags; | eImBufFlags IB_flags; | ||||
| } PlayAnimPict; | } PlayAnimPict; | ||||
| static struct ListBase picsbase = {NULL, NULL}; | static struct ListBase picsbase = {NULL, NULL}; | ||||
| /* frames in memory - store them here to for easy deallocation later */ | /* frames in memory - store them here to for easy deallocation later */ | ||||
| static bool fromdisk = false; | static bool fromdisk = false; | ||||
| static double ptottime = 0.0, swaptime = 0.04; | static double ptottime = 0.0, swaptime = 0.04; | ||||
| #ifdef WITH_AUDASPACE | #ifdef WITH_AUDASPACE | ||||
| static double fps_movie; | static double fps_movie; | ||||
| ▲ Show 20 Lines • Show All 1,413 Lines • Show Last 20 Lines | |||||