From 83939abe10ea7d9f3b851a1d8455072d63521768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Tue, 10 Oct 2023 16:49:16 +0200 Subject: [PATCH] fp-image: Add FP_IMAGE_NONE flags definition --- libfprint/fpi-image.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libfprint/fpi-image.h b/libfprint/fpi-image.h index 5cdf4e82..e9ff803d 100644 --- a/libfprint/fpi-image.h +++ b/libfprint/fpi-image.h @@ -33,6 +33,7 @@ * rely on the image to be normalized by libfprint before further processing. */ typedef enum { + FPI_IMAGE_NONE = 0, FPI_IMAGE_V_FLIPPED = 1 << 0, FPI_IMAGE_H_FLIPPED = 1 << 1, FPI_IMAGE_COLORS_INVERTED = 1 << 2,