summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2021-11-28 16:50:57 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2022-02-21 19:17:25 +0000
commit0823ded6d3858a4acaaaca57b2a4803a0a5884c8 (patch)
tree29c1a67e01990a89e056dd387113af6d417c2b29 /include
parentc9703eb11102d27e22f5f5119db111dd1b41f559 (diff)
downloadlibnsgif-0823ded6d3858a4acaaaca57b2a4803a0a5884c8.tar.gz
libnsgif-0823ded6d3858a4acaaaca57b2a4803a0a5884c8.tar.bz2
GIF: Rename flag for whether the frame image has been decoded.
Diffstat (limited to 'include')
-rw-r--r--include/libnsgif.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libnsgif.h b/include/libnsgif.h
index b281034..6b8d521 100644
--- a/include/libnsgif.h
+++ b/include/libnsgif.h
@@ -43,8 +43,8 @@ typedef struct gif_frame {
/** offset (in bytes) to the GIF frame data */
uint32_t frame_pointer;
- /** whether the frame has previously been used */
- bool virgin;
+ /** whether the frame has previously been decoded. */
+ bool decoded;
/** whether the frame is totally opaque */
bool opaque;
/** whether a full image redraw is required */