ADDED: TODO: ImageDrawCircleGradient()

This commit is contained in:
Ray
2026-06-07 21:51:02 +02:00
parent 0e7cc36567
commit d9335f6a95
2 changed files with 8 additions and 0 deletions

View File

@@ -3942,6 +3942,12 @@ void ImageDrawCircleLinesV(Image *dst, Vector2 center, int radius, Color color)
}
// Draw an image (source) within an image (destination)
// Draw a gradient-filled circle within an image
void ImageDrawCircleGradient(Image *dst, Vector2 center, float radius, Color inner, Color outer)
{
// TODO: Implement gradient circle drawing
}
// NOTE: Color tint is applied to source image
void ImageDraw(Image *dst, Image src, Rectangle srcRec, Rectangle dstRec, Color tint)
{