summaryrefslogtreecommitdiffhomepage
path: root/parser/output/raylib_api.json
diff options
context:
space:
mode:
authorseiren <[email protected]>2023-12-31 23:06:46 +0900
committerGitHub <[email protected]>2023-12-31 15:06:46 +0100
commit0a25a3ed7051377d7966cec6c3a3555d8ee0d551 (patch)
treec37b9d0dc752fad95bc5873faf48583e87c872cc /parser/output/raylib_api.json
parent710e811b2768e573b3c1a9eb4883f7a552d3d101 (diff)
downloadraylib-0a25a3ed7051377d7966cec6c3a3555d8ee0d551.tar.gz
raylib-0a25a3ed7051377d7966cec6c3a3555d8ee0d551.zip
Update raylib_api.* by CI (#3692)
* wip: add parse.yml * Temporarily force run * Auto commit parse files * Update raylib_api.* by CI * Remove temporary setting * format --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'parser/output/raylib_api.json')
-rw-r--r--parser/output/raylib_api.json94
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"
}
]
},