From 2ea18f7c88a2056e0f2bbf0557defe906de58302 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
 <41898282+github-actions[bot]@users.noreply.github.com>
Date: Thu, 2 Oct 2025 11:38:31 +0000
Subject: [PATCH] Update raylib_api.* by CI
---
 tools/parser/output/raylib_api.json | 54 ++++++++++++++---------------
 tools/parser/output/raylib_api.lua  | 24 ++++++-------
 tools/parser/output/raylib_api.txt  | 26 +++++++-------
 tools/parser/output/raylib_api.xml  | 14 ++++----
 4 files changed, 59 insertions(+), 59 deletions(-)
diff --git a/tools/parser/output/raylib_api.json b/tools/parser/output/raylib_api.json
index 7b2ffdc9d..9714d5d05 100644
--- a/tools/parser/output/raylib_api.json
+++ b/tools/parser/output/raylib_api.json
@@ -5508,33 +5508,6 @@
         }
       ]
     },
-    {
-      "name": "DrawLineDashed",
-      "description": "Draw a dashed line",
-      "returnType": "void",
-      "params": [
-        {
-          "type": "Vector2",
-          "name": "startPos"
-        },
-        {
-          "type": "Vector2",
-          "name": "endPos"
-        },
-        {
-          "type": "int",
-          "name": "dashSize"
-        },
-        {
-          "type": "int",
-          "name": "whiteSpaceSize"
-        },
-        {
-          "type": "Color",
-          "name": "color"
-        }
-      ]
-    },
     {
       "name": "DrawLineV",
       "description": "Draw a line (using gl lines)",
@@ -5619,6 +5592,33 @@
         }
       ]
     },
+    {
+      "name": "DrawLineDashed",
+      "description": "Draw a dashed line",
+      "returnType": "void",
+      "params": [
+        {
+          "type": "Vector2",
+          "name": "startPos"
+        },
+        {
+          "type": "Vector2",
+          "name": "endPos"
+        },
+        {
+          "type": "int",
+          "name": "dashSize"
+        },
+        {
+          "type": "int",
+          "name": "spaceSize"
+        },
+        {
+          "type": "Color",
+          "name": "color"
+        }
+      ]
+    },
     {
       "name": "DrawCircle",
       "description": "Draw a color-filled circle",
diff --git a/tools/parser/output/raylib_api.lua b/tools/parser/output/raylib_api.lua
index 62dc9b25d..75fd06373 100644
--- a/tools/parser/output/raylib_api.lua
+++ b/tools/parser/output/raylib_api.lua
@@ -4758,18 +4758,6 @@ return {
         {type = "Color", name = "color"}
       }
     },
-    {
-      name = "DrawLineDashed",
-      description = "Draw a dashed line",
-      returnType = "void",
-      params = {
-        {type = "Vector2", name = "startPos"},
-        {type = "Vector2", name = "endPos"},
-        {type = "int", name = "dashSize"},
-        {type = "int", name = "whiteSpaceSize"},
-        {type = "Color", name = "color"}
-      }
-    },
     {
       name = "DrawLineV",
       description = "Draw a line (using gl lines)",
@@ -4812,6 +4800,18 @@ return {
         {type = "Color", name = "color"}
       }
     },
+    {
+      name = "DrawLineDashed",
+      description = "Draw a dashed line",
+      returnType = "void",
+      params = {
+        {type = "Vector2", name = "startPos"},
+        {type = "Vector2", name = "endPos"},
+        {type = "int", name = "dashSize"},
+        {type = "int", name = "spaceSize"},
+        {type = "Color", name = "color"}
+      }
+    },
     {
       name = "DrawCircle",
       description = "Draw a color-filled circle",
diff --git a/tools/parser/output/raylib_api.txt b/tools/parser/output/raylib_api.txt
index ea00fc74e..849a97a56 100644
--- a/tools/parser/output/raylib_api.txt
+++ b/tools/parser/output/raylib_api.txt
@@ -2190,23 +2190,14 @@ Function 221: DrawLine() (5 input parameters)
   Param[3]: endPosX (type: int)
   Param[4]: endPosY (type: int)
   Param[5]: color (type: Color)
-Function 222: DrawLineDashed() (5 input parameters)
-  Name: DrawLineDashed
-  Return type: void
-  Description: Draw a dashed line
-  Param[1]: startPos (type: Vector2)
-  Param[2]: endPos (type: Vector2)
-  Param[3]: dashSize (type: int)
-  Param[4]: whiteSpaceSize (type: int)
-  Param[5]: color (type: Color)
-Function 223: DrawLineV() (3 input parameters)
+Function 222: DrawLineV() (3 input parameters)
   Name: DrawLineV
   Return type: void
   Description: Draw a line (using gl lines)
   Param[1]: startPos (type: Vector2)
   Param[2]: endPos (type: Vector2)
   Param[3]: color (type: Color)
-Function 224: DrawLineEx() (4 input parameters)
+Function 223: DrawLineEx() (4 input parameters)
   Name: DrawLineEx
   Return type: void
   Description: Draw a line (using triangles/quads)
@@ -2214,14 +2205,14 @@ Function 224: DrawLineEx() (4 input parameters)
   Param[2]: endPos (type: Vector2)
   Param[3]: thick (type: float)
   Param[4]: color (type: Color)
-Function 225: DrawLineStrip() (3 input parameters)
+Function 224: DrawLineStrip() (3 input parameters)
   Name: DrawLineStrip
   Return type: void
   Description: Draw lines sequence (using gl lines)
   Param[1]: points (type: const Vector2 *)
   Param[2]: pointCount (type: int)
   Param[3]: color (type: Color)
-Function 226: DrawLineBezier() (4 input parameters)
+Function 225: DrawLineBezier() (4 input parameters)
   Name: DrawLineBezier
   Return type: void
   Description: Draw line segment cubic-bezier in-out interpolation
@@ -2229,6 +2220,15 @@ Function 226: DrawLineBezier() (4 input parameters)
   Param[2]: endPos (type: Vector2)
   Param[3]: thick (type: float)
   Param[4]: color (type: Color)
+Function 226: DrawLineDashed() (5 input parameters)
+  Name: DrawLineDashed
+  Return type: void
+  Description: Draw a dashed line
+  Param[1]: startPos (type: Vector2)
+  Param[2]: endPos (type: Vector2)
+  Param[3]: dashSize (type: int)
+  Param[4]: spaceSize (type: int)
+  Param[5]: color (type: Color)
 Function 227: DrawCircle() (4 input parameters)
   Name: DrawCircle
   Return type: void
diff --git a/tools/parser/output/raylib_api.xml b/tools/parser/output/raylib_api.xml
index 29546a2a8..59f2d4a50 100644
--- a/tools/parser/output/raylib_api.xml
+++ b/tools/parser/output/raylib_api.xml
@@ -1359,13 +1359,6 @@
             
             
         
-        
-            
-            
-            
-            
-            
-        
         
             
             
@@ -1388,6 +1381,13 @@
             
             
         
+        
+            
+            
+            
+            
+            
+