summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2022-03-02 12:29:30 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2022-03-02 12:29:30 +0000
commit5e815f4923c3c7e0d30ff665896d3331784c243d (patch)
treec90fc4774d3f3d4ed968688a73913ae9f61ba8dc /test
parentfa359952ebde452911c325bd6c091a11bff111b8 (diff)
downloadlibnsgif-5e815f4923c3c7e0d30ff665896d3331784c243d.tar.gz
libnsgif-5e815f4923c3c7e0d30ff665896d3331784c243d.tar.bz2
Test: Add transparency to frame info dump.
Diffstat (limited to 'test')
-rw-r--r--test/nsgif.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/nsgif.c b/test/nsgif.c
index 648d3d1..bac9061 100644
--- a/test/nsgif.c
+++ b/test/nsgif.c
@@ -152,6 +152,7 @@ static void print_gif_frame_info(const nsgif_frame_info_t *info)
const char *disposal = nsgif_str_disposal(info->disposal);
fprintf(stdout, " - disposal-method: %s\n", disposal);
+ fprintf(stdout, " transparency: %s\n", info->transparency ? "yes" : "no");
fprintf(stdout, " display: %s\n", info->display ? "yes" : "no");
fprintf(stdout, " delay: %"PRIu32"\n", info->delay);
fprintf(stdout, " rect:\n");