Remove trailing spaces

This commit is contained in:
raysan5 2021-04-01 20:24:33 +02:00
parent b4975619ed
commit aed0fee2ca
8 changed files with 60 additions and 60 deletions

View file

@ -3511,12 +3511,12 @@ void DrawTextureNPatch(Texture2D texture, NPatchInfo nPatchInfo, Rectangle dest,
}
// Draw textured polygon, defined by vertex and texturecoordinates
// NOTE: Polygon center must have straight line path to all points
// NOTE: Polygon center must have straight line path to all points
// without crossing perimeter, points must be in anticlockwise order
void DrawTexturePoly(Texture2D texture, Vector2 center, Vector2 *points, Vector2 *texcoords, int pointsCount, Color tint)
{
rlCheckRenderBatchLimit((pointsCount - 1)*4);
rlSetTexture(texture.id);
// Texturing is only supported on QUADs