You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/raylib.h
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1429,8 +1429,8 @@ RLAPI void ImageDrawRectangleLines(Image *dst, Rectangle rec, int thick, Color c
1429
1429
RLAPIvoidImageDrawTriangle(Image*dst, Vector2v1, Vector2v2, Vector2v3, Colorcolor); // Draw triangle within an image
1430
1430
RLAPIvoidImageDrawTriangleEx(Image*dst, Vector2v1, Vector2v2, Vector2v3, Colorc1, Colorc2, Colorc3); // Draw triangle with interpolated colors within an image
1431
1431
RLAPIvoidImageDrawTriangleLines(Image*dst, Vector2v1, Vector2v2, Vector2v3, Colorcolor); // Draw triangle outline within an image
1432
-
RLAPIvoidImageDrawTriangleFan(Image*dst, constVector2*points, intpointCount, Colorcolor); // Draw a triangle fan defined by points within an image (first vertex is the center)
1433
-
RLAPIvoidImageDrawTriangleStrip(Image*dst, constVector2*points, intpointCount, Colorcolor); // Draw a triangle strip defined by points within an image
1432
+
RLAPIvoidImageDrawTriangleFan(Image*dst, constVector2*points, intpointCount, Colorcolor); // Draw a triangle fan defined by points within an image (first vertex is the center)
1433
+
RLAPIvoidImageDrawTriangleStrip(Image*dst, constVector2*points, intpointCount, Colorcolor); // Draw a triangle strip defined by points within an image
1434
1434
RLAPIvoidImageDraw(Image*dst, Imagesrc, RectanglesrcRec, RectangledstRec, Colortint); // Draw a source image within a destination image (tint applied to source)
1435
1435
RLAPIvoidImageDrawText(Image*dst, constchar*text, intposX, intposY, intfontSize, Colorcolor); // Draw text (using default font) within an image (destination)
1436
1436
RLAPIvoidImageDrawTextEx(Image*dst, Fontfont, constchar*text, Vector2position, floatfontSize, floatspacing, Colortint); // Draw text (custom sprite font) within an image (destination)
0 commit comments