Skip to content

Commit

Permalink
gdk-pixbuf: Chase 676aded
Browse files Browse the repository at this point in the history
contrib/gdk-pixbuf/loader.c:212:29: error: no member named 'mode' in 'struct avifImageMirror'
        switch (image->imir.mode) {
                ~~~~~~~~~~~ ^

This reverts commit 0f729c1.
  • Loading branch information
jbeich authored and wantehchang committed Aug 29, 2023
1 parent e96d042 commit 26224fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/gdk-pixbuf/loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ static gboolean avif_context_try_load(struct avif_context * context, GError ** e
if (image->transformFlags & AVIF_TRANSFORM_IMIR) {
GdkPixbuf *output_mirrored = NULL;

switch (image->imir.mode) {
switch (image->imir.axis) {
case 0:
output_mirrored = gdk_pixbuf_flip(output, FALSE);
break;
Expand Down

0 comments on commit 26224fe

Please sign in to comment.