2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00

Fix bug with incorrect DrawTriangleStrip parameter

- It should take Vector2[] instead of a ref to Vector2 since it operates on multiple points.
This commit is contained in:
ChrisDill 2020-11-04 21:22:20 +00:00
parent 06d092d462
commit be43e6c76c

View File

@ -1640,7 +1640,7 @@ namespace Raylib_cs
// Draw a triangle strip defined by points // Draw a triangle strip defined by points
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void DrawTriangleStrip(ref Vector2 points, int pointsCount, Color color); public static extern void DrawTriangleStrip(Vector2[] points, int pointsCount, Color color);
// Draw a regular polygon (Vector version) // Draw a regular polygon (Vector version)
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]