diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2015-11-11 09:58:23 +0000 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2015-11-11 09:58:23 +0000 |
commit | 497e3d5b470d091b7e109a7116313041cddc6c14 (patch) | |
tree | da0c93d290b2b889d3056e9f2aca2571322c8f9b /image.h | |
parent | 09c807871055a857fd1be936fa3219d4838c1151 (diff) | |
download | imv-497e3d5b470d091b7e109a7116313041cddc6c14.tar.gz |
Let imv_image track changes to itself
Diffstat (limited to 'image.h')
-rw-r--r-- | image.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -30,6 +30,7 @@ struct imv_image { int cur_frame; int next_frame; int num_frames; + int changed; double frame_time; }; @@ -43,4 +44,6 @@ void imv_image_load_next_frame(struct imv_image *img); int imv_image_is_animated(struct imv_image *img); void imv_image_play(struct imv_image *img, double time); +int imv_image_has_changed(struct imv_image *img); + #endif |