Fix build with older versions of Cairo

This commit is contained in:
Přemysl Eric Janouch 2023-06-25 02:00:51 +02:00
parent 4b5b8ec9fa
commit 1ef0a84bc7
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 2 additions and 0 deletions

View File

@ -191,12 +191,14 @@ fiv_io_image_new(cairo_format_t format, uint32_t width, uint32_t height)
case CAIRO_FORMAT_ARGB32:
unit = 4;
break;
#if CAIRO_VERSION >= 11702
case CAIRO_FORMAT_RGB96F:
unit = 12;
break;
case CAIRO_FORMAT_RGBA128F:
unit = 16;
break;
#endif
default:
return NULL;
}