diff options
Diffstat (limited to 'parser/output/raylib_api.json')
| -rw-r--r-- | parser/output/raylib_api.json | 94 |
1 files changed, 74 insertions, 20 deletions
diff --git a/parser/output/raylib_api.json b/parser/output/raylib_api.json index 4b7049d8..c64a080f 100644 --- a/parser/output/raylib_api.json +++ b/parser/output/raylib_api.json @@ -1233,11 +1233,6 @@ }, { "type": "float", - "name": "vScreenCenter", - "description": "Screen center in meters" - }, - { - "type": "float", "name": "eyeToScreenDistance", "description": "Distance between eye and display in meters" }, @@ -4637,7 +4632,7 @@ "returnType": "void", "params": [ { - "type": "AutomationEventList *", + "type": "AutomationEventList", "name": "list" } ] @@ -5173,6 +5168,16 @@ ] }, { + "name": "GetShapesTexture", + "description": "Get texture that is used for shapes drawing", + "returnType": "Texture2D" + }, + { + "name": "GetShapesTextureRectangle", + "description": "Get texture source rectangle that is used for shapes drawing", + "returnType": "Rectangle" + }, + { "name": "DrawPixel", "description": "Draw a pixel", "returnType": "void", @@ -6704,6 +6709,29 @@ ] }, { + "name": "LoadImageAnimFromMemory", + "description": "Load image sequence from memory buffer", + "returnType": "Image", + "params": [ + { + "type": "const char *", + "name": "fileType" + }, + { + "type": "const unsigned char *", + "name": "fileData" + }, + { + "type": "int", + "name": "dataSize" + }, + { + "type": "int *", + "name": "frames" + } + ] + }, + { "name": "LoadImageFromMemory", "description": "Load image from memory buffer, fileType refers to extension: i.e. '.png'", "returnType": "Image", @@ -9194,7 +9222,7 @@ "returnType": "char *", "params": [ { - "type": "char *", + "type": "const char *", "name": "text" }, { @@ -9343,6 +9371,17 @@ ] }, { + "name": "TextToFloat", + "description": "Get float value from text (negative values not supported)", + "returnType": "float", + "params": [ + { + "type": "const char *", + "name": "text" + } + ] + }, + { "name": "DrawLine3D", "description": "Draw a line in 3D world space", "returnType": "void", @@ -10220,39 +10259,54 @@ ] }, { - "name": "ExportMesh", - "description": "Export mesh data to file, returns true on success", - "returnType": "bool", + "name": "GetMeshBoundingBox", + "description": "Compute mesh bounding box limits", + "returnType": "BoundingBox", "params": [ { "type": "Mesh", "name": "mesh" - }, + } + ] + }, + { + "name": "GenMeshTangents", + "description": "Compute mesh tangents", + "returnType": "void", + "params": [ { - "type": "const char *", - "name": "fileName" + "type": "Mesh *", + "name": "mesh" } ] }, { - "name": "GetMeshBoundingBox", - "description": "Compute mesh bounding box limits", - "returnType": "BoundingBox", + "name": "ExportMesh", + "description": "Export mesh data to file, returns true on success", + "returnType": "bool", "params": [ { "type": "Mesh", "name": "mesh" + }, + { + "type": "const char *", + "name": "fileName" } ] }, { - "name": "GenMeshTangents", - "description": "Compute mesh tangents", - "returnType": "void", + "name": "ExportMeshAsCode", + "description": "Export mesh as code file (.h) defining multiple arrays of vertex attributes", + "returnType": "bool", "params": [ { - "type": "Mesh *", + "type": "Mesh", "name": "mesh" + }, + { + "type": "const char *", + "name": "fileName" } ] }, |
