diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs
index 81a40f0..349c72b 100644
--- a/Raylib-cs/interop/Raylib.cs
+++ b/Raylib-cs/interop/Raylib.cs
@@ -1030,11 +1030,11 @@ public static unsafe partial class Raylib
// Basic shapes drawing functions
- /// Draw a pixel
+ /// Draw a pixel using geometry [Can be slow, use with care]
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void DrawPixel(int posX, int posY, Color color);
- /// Draw a pixel (Vector version)
+ /// Draw a pixel using geometry (Vector version) [Can be slow, use with care]
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void DrawPixelV(Vector2 position, Color color);