From ddafa2764240436557aa54484e00f64cc11ec001 Mon Sep 17 00:00:00 2001 From: Christian C Date: Sun, 23 Mar 2025 15:46:37 -0700 Subject: Shorter type name --- include/lib/algo/flood_fill.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/lib/algo/flood_fill.h') diff --git a/include/lib/algo/flood_fill.h b/include/lib/algo/flood_fill.h index e9872eb..f446e3b 100644 --- a/include/lib/algo/flood_fill.h +++ b/include/lib/algo/flood_fill.h @@ -15,6 +15,6 @@ // 4. Check if the (x,y) coordinate in the image is the same color as the fill color // 5. If all hold, set the label for the pixel, and check each neighbor // Otherwise, stop flooding -bool_t flood(ImageData_t* image, ImageMaskData_t* mask, size_t width, size_t height, size_t channels, size_t x, size_t y, ImageData_t* fill_color, ImageMaskData_t label); +bool_t flood(ImageData_t* image, MaskData_t* mask, size_t width, size_t height, size_t channels, size_t x, size_t y, ImageData_t* fill_color, MaskData_t label); #endif -- cgit v1.2.1