Add floodFill in CFFI

This commit is contained in:
Joshua Granick
2015-04-14 14:26:57 -07:00
parent 560a78db62
commit e2c2359726
5 changed files with 94 additions and 5 deletions

View File

@@ -22,6 +22,7 @@ namespace lime {
static void CopyChannel (Image* image, Image* sourceImage, Rectangle* sourceRect, Vector2* destPoint, int srcChannel, int destChannel);
static void CopyPixels (Image* image, Image* sourceImage, Rectangle* sourceRect, Vector2* destPoint, bool mergeAlpha);
static void FillRect (Image* image, Rectangle* rect, int color);
static void FloodFill (Image* image, int x, int y, int color);
static void MultiplyAlpha (Image *image);
static void UnmultiplyAlpha (Image *image);