diff --git a/tools/rlparser/output/raylib_api.json b/tools/rlparser/output/raylib_api.json
index d4ff5598b..1fbc87a9d 100644
--- a/tools/rlparser/output/raylib_api.json
+++ b/tools/rlparser/output/raylib_api.json
@@ -7231,7 +7231,7 @@
},
{
"name": "ExportImageToMemory",
- "description": "Export image to memory buffer",
+ "description": "Export image to memory buffer, memory must be MemFree()",
"returnType": "unsigned char *",
"params": [
{
@@ -9946,7 +9946,26 @@
},
{
"name": "TextReplace",
- "description": "Replace text string (WARNING: memory must be freed!)",
+ "description": "Replace text string with new string",
+ "returnType": "char *",
+ "params": [
+ {
+ "type": "const char *",
+ "name": "text"
+ },
+ {
+ "type": "const char *",
+ "name": "search"
+ },
+ {
+ "type": "const char *",
+ "name": "replacement"
+ }
+ ]
+ },
+ {
+ "name": "TextReplaceAlloc",
+ "description": "Replace text string with new string, memory must be MemFree()",
"returnType": "char *",
"params": [
{
@@ -9965,7 +9984,30 @@
},
{
"name": "TextReplaceBetween",
- "description": "Replace text between two specific strings (WARNING: memory must be freed!)",
+ "description": "Replace text between two specific strings",
+ "returnType": "char *",
+ "params": [
+ {
+ "type": "const char *",
+ "name": "text"
+ },
+ {
+ "type": "const char *",
+ "name": "begin"
+ },
+ {
+ "type": "const char *",
+ "name": "end"
+ },
+ {
+ "type": "const char *",
+ "name": "replacement"
+ }
+ ]
+ },
+ {
+ "name": "TextReplaceBetweenAlloc",
+ "description": "Replace text between two specific strings, memory must be MemFree()",
"returnType": "char *",
"params": [
{
@@ -9988,7 +10030,26 @@
},
{
"name": "TextInsert",
- "description": "Insert text in a position (WARNING: memory must be freed!)",
+ "description": "Insert text in a defined byte position",
+ "returnType": "char *",
+ "params": [
+ {
+ "type": "const char *",
+ "name": "text"
+ },
+ {
+ "type": "const char *",
+ "name": "insert"
+ },
+ {
+ "type": "int",
+ "name": "position"
+ }
+ ]
+ },
+ {
+ "name": "TextInsertAlloc",
+ "description": "Insert text in a defined byte position, memory must be MemFree()",
"returnType": "char *",
"params": [
{
diff --git a/tools/rlparser/output/raylib_api.lua b/tools/rlparser/output/raylib_api.lua
index 5e22916b3..398e1b177 100644
--- a/tools/rlparser/output/raylib_api.lua
+++ b/tools/rlparser/output/raylib_api.lua
@@ -5596,7 +5596,7 @@ return {
},
{
name = "ExportImageToMemory",
- description = "Export image to memory buffer",
+ description = "Export image to memory buffer, memory must be MemFree()",
returnType = "unsigned char *",
params = {
{type = "Image", name = "image"},
@@ -7045,7 +7045,17 @@ return {
},
{
name = "TextReplace",
- description = "Replace text string (WARNING: memory must be freed!)",
+ description = "Replace text string with new string",
+ returnType = "char *",
+ params = {
+ {type = "const char *", name = "text"},
+ {type = "const char *", name = "search"},
+ {type = "const char *", name = "replacement"}
+ }
+ },
+ {
+ name = "TextReplaceAlloc",
+ description = "Replace text string with new string, memory must be MemFree()",
returnType = "char *",
params = {
{type = "const char *", name = "text"},
@@ -7055,7 +7065,18 @@ return {
},
{
name = "TextReplaceBetween",
- description = "Replace text between two specific strings (WARNING: memory must be freed!)",
+ description = "Replace text between two specific strings",
+ returnType = "char *",
+ params = {
+ {type = "const char *", name = "text"},
+ {type = "const char *", name = "begin"},
+ {type = "const char *", name = "end"},
+ {type = "const char *", name = "replacement"}
+ }
+ },
+ {
+ name = "TextReplaceBetweenAlloc",
+ description = "Replace text between two specific strings, memory must be MemFree()",
returnType = "char *",
params = {
{type = "const char *", name = "text"},
@@ -7066,7 +7087,17 @@ return {
},
{
name = "TextInsert",
- description = "Insert text in a position (WARNING: memory must be freed!)",
+ description = "Insert text in a defined byte position",
+ returnType = "char *",
+ params = {
+ {type = "const char *", name = "text"},
+ {type = "const char *", name = "insert"},
+ {type = "int", name = "position"}
+ }
+ },
+ {
+ name = "TextInsertAlloc",
+ description = "Insert text in a defined byte position, memory must be MemFree()",
returnType = "char *",
params = {
{type = "const char *", name = "text"},
diff --git a/tools/rlparser/output/raylib_api.txt b/tools/rlparser/output/raylib_api.txt
index 7943b28f3..d3cd7bcdc 100644
--- a/tools/rlparser/output/raylib_api.txt
+++ b/tools/rlparser/output/raylib_api.txt
@@ -1000,7 +1000,7 @@ Callback 006: AudioCallback() (2 input parameters)
Param[1]: bufferData (type: void *)
Param[2]: frames (type: unsigned int)
-Functions found: 597
+Functions found: 600
Function 001: InitWindow() (3 input parameters)
Name: InitWindow
@@ -2800,7 +2800,7 @@ Function 297: ExportImage() (2 input parameters)
Function 298: ExportImageToMemory() (3 input parameters)
Name: ExportImageToMemory
Return type: unsigned char *
- Description: Export image to memory buffer
+ Description: Export image to memory buffer, memory must be MemFree()
Param[1]: image (type: Image)
Param[2]: fileType (type: const char *)
Param[3]: fileSize (type: int *)
@@ -3811,101 +3811,123 @@ Function 444: GetTextBetween() (3 input parameters)
Function 445: TextReplace() (3 input parameters)
Name: TextReplace
Return type: char *
- Description: Replace text string (WARNING: memory must be freed!)
+ Description: Replace text string with new string
Param[1]: text (type: const char *)
Param[2]: search (type: const char *)
Param[3]: replacement (type: const char *)
-Function 446: TextReplaceBetween() (4 input parameters)
+Function 446: TextReplaceAlloc() (3 input parameters)
+ Name: TextReplaceAlloc
+ Return type: char *
+ Description: Replace text string with new string, memory must be MemFree()
+ Param[1]: text (type: const char *)
+ Param[2]: search (type: const char *)
+ Param[3]: replacement (type: const char *)
+Function 447: TextReplaceBetween() (4 input parameters)
Name: TextReplaceBetween
Return type: char *
- Description: Replace text between two specific strings (WARNING: memory must be freed!)
+ Description: Replace text between two specific strings
Param[1]: text (type: const char *)
Param[2]: begin (type: const char *)
Param[3]: end (type: const char *)
Param[4]: replacement (type: const char *)
-Function 447: TextInsert() (3 input parameters)
+Function 448: TextReplaceBetweenAlloc() (4 input parameters)
+ Name: TextReplaceBetweenAlloc
+ Return type: char *
+ Description: Replace text between two specific strings, memory must be MemFree()
+ Param[1]: text (type: const char *)
+ Param[2]: begin (type: const char *)
+ Param[3]: end (type: const char *)
+ Param[4]: replacement (type: const char *)
+Function 449: TextInsert() (3 input parameters)
Name: TextInsert
Return type: char *
- Description: Insert text in a position (WARNING: memory must be freed!)
+ Description: Insert text in a defined byte position
Param[1]: text (type: const char *)
Param[2]: insert (type: const char *)
Param[3]: position (type: int)
-Function 448: TextJoin() (3 input parameters)
+Function 450: TextInsertAlloc() (3 input parameters)
+ Name: TextInsertAlloc
+ Return type: char *
+ Description: Insert text in a defined byte position, memory must be MemFree()
+ Param[1]: text (type: const char *)
+ Param[2]: insert (type: const char *)
+ Param[3]: position (type: int)
+Function 451: TextJoin() (3 input parameters)
Name: TextJoin
Return type: char *
Description: Join text strings with delimiter
Param[1]: textList (type: char **)
Param[2]: count (type: int)
Param[3]: delimiter (type: const char *)
-Function 449: TextSplit() (3 input parameters)
+Function 452: TextSplit() (3 input parameters)
Name: TextSplit
Return type: char **
Description: Split text into multiple strings, using MAX_TEXTSPLIT_COUNT static strings
Param[1]: text (type: const char *)
Param[2]: delimiter (type: char)
Param[3]: count (type: int *)
-Function 450: TextAppend() (3 input parameters)
+Function 453: TextAppend() (3 input parameters)
Name: TextAppend
Return type: void
Description: Append text at specific position and move cursor
Param[1]: text (type: char *)
Param[2]: append (type: const char *)
Param[3]: position (type: int *)
-Function 451: TextFindIndex() (2 input parameters)
+Function 454: TextFindIndex() (2 input parameters)
Name: TextFindIndex
Return type: int
Description: Find first text occurrence within a string, -1 if not found
Param[1]: text (type: const char *)
Param[2]: search (type: const char *)
-Function 452: TextToUpper() (1 input parameters)
+Function 455: TextToUpper() (1 input parameters)
Name: TextToUpper
Return type: char *
Description: Get upper case version of provided string
Param[1]: text (type: const char *)
-Function 453: TextToLower() (1 input parameters)
+Function 456: TextToLower() (1 input parameters)
Name: TextToLower
Return type: char *
Description: Get lower case version of provided string
Param[1]: text (type: const char *)
-Function 454: TextToPascal() (1 input parameters)
+Function 457: TextToPascal() (1 input parameters)
Name: TextToPascal
Return type: char *
Description: Get Pascal case notation version of provided string
Param[1]: text (type: const char *)
-Function 455: TextToSnake() (1 input parameters)
+Function 458: TextToSnake() (1 input parameters)
Name: TextToSnake
Return type: char *
Description: Get Snake case notation version of provided string
Param[1]: text (type: const char *)
-Function 456: TextToCamel() (1 input parameters)
+Function 459: TextToCamel() (1 input parameters)
Name: TextToCamel
Return type: char *
Description: Get Camel case notation version of provided string
Param[1]: text (type: const char *)
-Function 457: TextToInteger() (1 input parameters)
+Function 460: TextToInteger() (1 input parameters)
Name: TextToInteger
Return type: int
Description: Get integer value from text
Param[1]: text (type: const char *)
-Function 458: TextToFloat() (1 input parameters)
+Function 461: TextToFloat() (1 input parameters)
Name: TextToFloat
Return type: float
Description: Get float value from text
Param[1]: text (type: const char *)
-Function 459: DrawLine3D() (3 input parameters)
+Function 462: DrawLine3D() (3 input parameters)
Name: DrawLine3D
Return type: void
Description: Draw a line in 3D world space
Param[1]: startPos (type: Vector3)
Param[2]: endPos (type: Vector3)
Param[3]: color (type: Color)
-Function 460: DrawPoint3D() (2 input parameters)
+Function 463: DrawPoint3D() (2 input parameters)
Name: DrawPoint3D
Return type: void
Description: Draw a point in 3D space, actually a small line
Param[1]: position (type: Vector3)
Param[2]: color (type: Color)
-Function 461: DrawCircle3D() (5 input parameters)
+Function 464: DrawCircle3D() (5 input parameters)
Name: DrawCircle3D
Return type: void
Description: Draw a circle in 3D world space
@@ -3914,7 +3936,7 @@ Function 461: DrawCircle3D() (5 input parameters)
Param[3]: rotationAxis (type: Vector3)
Param[4]: rotationAngle (type: float)
Param[5]: color (type: Color)
-Function 462: DrawTriangle3D() (4 input parameters)
+Function 465: DrawTriangle3D() (4 input parameters)
Name: DrawTriangle3D
Return type: void
Description: Draw a color-filled triangle (vertex in counter-clockwise order!)
@@ -3922,14 +3944,14 @@ Function 462: DrawTriangle3D() (4 input parameters)
Param[2]: v2 (type: Vector3)
Param[3]: v3 (type: Vector3)
Param[4]: color (type: Color)
-Function 463: DrawTriangleStrip3D() (3 input parameters)
+Function 466: DrawTriangleStrip3D() (3 input parameters)
Name: DrawTriangleStrip3D
Return type: void
Description: Draw a triangle strip defined by points
Param[1]: points (type: const Vector3 *)
Param[2]: pointCount (type: int)
Param[3]: color (type: Color)
-Function 464: DrawCube() (5 input parameters)
+Function 467: DrawCube() (5 input parameters)
Name: DrawCube
Return type: void
Description: Draw cube
@@ -3938,14 +3960,14 @@ Function 464: DrawCube() (5 input parameters)
Param[3]: height (type: float)
Param[4]: length (type: float)
Param[5]: color (type: Color)
-Function 465: DrawCubeV() (3 input parameters)
+Function 468: DrawCubeV() (3 input parameters)
Name: DrawCubeV
Return type: void
Description: Draw cube (Vector version)
Param[1]: position (type: Vector3)
Param[2]: size (type: Vector3)
Param[3]: color (type: Color)
-Function 466: DrawCubeWires() (5 input parameters)
+Function 469: DrawCubeWires() (5 input parameters)
Name: DrawCubeWires
Return type: void
Description: Draw cube wires
@@ -3954,21 +3976,21 @@ Function 466: DrawCubeWires() (5 input parameters)
Param[3]: height (type: float)
Param[4]: length (type: float)
Param[5]: color (type: Color)
-Function 467: DrawCubeWiresV() (3 input parameters)
+Function 470: DrawCubeWiresV() (3 input parameters)
Name: DrawCubeWiresV
Return type: void
Description: Draw cube wires (Vector version)
Param[1]: position (type: Vector3)
Param[2]: size (type: Vector3)
Param[3]: color (type: Color)
-Function 468: DrawSphere() (3 input parameters)
+Function 471: DrawSphere() (3 input parameters)
Name: DrawSphere
Return type: void
Description: Draw sphere
Param[1]: centerPos (type: Vector3)
Param[2]: radius (type: float)
Param[3]: color (type: Color)
-Function 469: DrawSphereEx() (5 input parameters)
+Function 472: DrawSphereEx() (5 input parameters)
Name: DrawSphereEx
Return type: void
Description: Draw sphere with extended parameters
@@ -3977,7 +3999,7 @@ Function 469: DrawSphereEx() (5 input parameters)
Param[3]: rings (type: int)
Param[4]: slices (type: int)
Param[5]: color (type: Color)
-Function 470: DrawSphereWires() (5 input parameters)
+Function 473: DrawSphereWires() (5 input parameters)
Name: DrawSphereWires
Return type: void
Description: Draw sphere wires
@@ -3986,7 +4008,7 @@ Function 470: DrawSphereWires() (5 input parameters)
Param[3]: rings (type: int)
Param[4]: slices (type: int)
Param[5]: color (type: Color)
-Function 471: DrawCylinder() (6 input parameters)
+Function 474: DrawCylinder() (6 input parameters)
Name: DrawCylinder
Return type: void
Description: Draw a cylinder/cone
@@ -3996,7 +4018,7 @@ Function 471: DrawCylinder() (6 input parameters)
Param[4]: height (type: float)
Param[5]: slices (type: int)
Param[6]: color (type: Color)
-Function 472: DrawCylinderEx() (6 input parameters)
+Function 475: DrawCylinderEx() (6 input parameters)
Name: DrawCylinderEx
Return type: void
Description: Draw a cylinder with base at startPos and top at endPos
@@ -4006,7 +4028,7 @@ Function 472: DrawCylinderEx() (6 input parameters)
Param[4]: endRadius (type: float)
Param[5]: sides (type: int)
Param[6]: color (type: Color)
-Function 473: DrawCylinderWires() (6 input parameters)
+Function 476: DrawCylinderWires() (6 input parameters)
Name: DrawCylinderWires
Return type: void
Description: Draw a cylinder/cone wires
@@ -4016,7 +4038,7 @@ Function 473: DrawCylinderWires() (6 input parameters)
Param[4]: height (type: float)
Param[5]: slices (type: int)
Param[6]: color (type: Color)
-Function 474: DrawCylinderWiresEx() (6 input parameters)
+Function 477: DrawCylinderWiresEx() (6 input parameters)
Name: DrawCylinderWiresEx
Return type: void
Description: Draw a cylinder wires with base at startPos and top at endPos
@@ -4026,7 +4048,7 @@ Function 474: DrawCylinderWiresEx() (6 input parameters)
Param[4]: endRadius (type: float)
Param[5]: sides (type: int)
Param[6]: color (type: Color)
-Function 475: DrawCapsule() (6 input parameters)
+Function 478: DrawCapsule() (6 input parameters)
Name: DrawCapsule
Return type: void
Description: Draw a capsule with the center of its sphere caps at startPos and endPos
@@ -4036,7 +4058,7 @@ Function 475: DrawCapsule() (6 input parameters)
Param[4]: slices (type: int)
Param[5]: rings (type: int)
Param[6]: color (type: Color)
-Function 476: DrawCapsuleWires() (6 input parameters)
+Function 479: DrawCapsuleWires() (6 input parameters)
Name: DrawCapsuleWires
Return type: void
Description: Draw capsule wireframe with the center of its sphere caps at startPos and endPos
@@ -4046,51 +4068,51 @@ Function 476: DrawCapsuleWires() (6 input parameters)
Param[4]: slices (type: int)
Param[5]: rings (type: int)
Param[6]: color (type: Color)
-Function 477: DrawPlane() (3 input parameters)
+Function 480: DrawPlane() (3 input parameters)
Name: DrawPlane
Return type: void
Description: Draw a plane XZ
Param[1]: centerPos (type: Vector3)
Param[2]: size (type: Vector2)
Param[3]: color (type: Color)
-Function 478: DrawRay() (2 input parameters)
+Function 481: DrawRay() (2 input parameters)
Name: DrawRay
Return type: void
Description: Draw a ray line
Param[1]: ray (type: Ray)
Param[2]: color (type: Color)
-Function 479: DrawGrid() (2 input parameters)
+Function 482: DrawGrid() (2 input parameters)
Name: DrawGrid
Return type: void
Description: Draw a grid (centered at (0, 0, 0))
Param[1]: slices (type: int)
Param[2]: spacing (type: float)
-Function 480: LoadModel() (1 input parameters)
+Function 483: LoadModel() (1 input parameters)
Name: LoadModel
Return type: Model
Description: Load model from files (meshes and materials)
Param[1]: fileName (type: const char *)
-Function 481: LoadModelFromMesh() (1 input parameters)
+Function 484: LoadModelFromMesh() (1 input parameters)
Name: LoadModelFromMesh
Return type: Model
Description: Load model from generated mesh (default material)
Param[1]: mesh (type: Mesh)
-Function 482: IsModelValid() (1 input parameters)
+Function 485: IsModelValid() (1 input parameters)
Name: IsModelValid
Return type: bool
Description: Check if a model is valid (loaded in GPU, VAO/VBOs)
Param[1]: model (type: Model)
-Function 483: UnloadModel() (1 input parameters)
+Function 486: UnloadModel() (1 input parameters)
Name: UnloadModel
Return type: void
Description: Unload model (including meshes) from memory (RAM and/or VRAM)
Param[1]: model (type: Model)
-Function 484: GetModelBoundingBox() (1 input parameters)
+Function 487: GetModelBoundingBox() (1 input parameters)
Name: GetModelBoundingBox
Return type: BoundingBox
Description: Compute model bounding box limits (considers all meshes)
Param[1]: model (type: Model)
-Function 485: DrawModel() (4 input parameters)
+Function 488: DrawModel() (4 input parameters)
Name: DrawModel
Return type: void
Description: Draw a model (with texture if set)
@@ -4098,7 +4120,7 @@ Function 485: DrawModel() (4 input parameters)
Param[2]: position (type: Vector3)
Param[3]: scale (type: float)
Param[4]: tint (type: Color)
-Function 486: DrawModelEx() (6 input parameters)
+Function 489: DrawModelEx() (6 input parameters)
Name: DrawModelEx
Return type: void
Description: Draw a model with extended parameters
@@ -4108,7 +4130,7 @@ Function 486: DrawModelEx() (6 input parameters)
Param[4]: rotationAngle (type: float)
Param[5]: scale (type: Vector3)
Param[6]: tint (type: Color)
-Function 487: DrawModelWires() (4 input parameters)
+Function 490: DrawModelWires() (4 input parameters)
Name: DrawModelWires
Return type: void
Description: Draw a model wires (with texture if set)
@@ -4116,7 +4138,7 @@ Function 487: DrawModelWires() (4 input parameters)
Param[2]: position (type: Vector3)
Param[3]: scale (type: float)
Param[4]: tint (type: Color)
-Function 488: DrawModelWiresEx() (6 input parameters)
+Function 491: DrawModelWiresEx() (6 input parameters)
Name: DrawModelWiresEx
Return type: void
Description: Draw a model wires (with texture if set) with extended parameters
@@ -4126,13 +4148,13 @@ Function 488: DrawModelWiresEx() (6 input parameters)
Param[4]: rotationAngle (type: float)
Param[5]: scale (type: Vector3)
Param[6]: tint (type: Color)
-Function 489: DrawBoundingBox() (2 input parameters)
+Function 492: DrawBoundingBox() (2 input parameters)
Name: DrawBoundingBox
Return type: void
Description: Draw bounding box (wires)
Param[1]: box (type: BoundingBox)
Param[2]: color (type: Color)
-Function 490: DrawBillboard() (5 input parameters)
+Function 493: DrawBillboard() (5 input parameters)
Name: DrawBillboard
Return type: void
Description: Draw a billboard texture
@@ -4141,7 +4163,7 @@ Function 490: DrawBillboard() (5 input parameters)
Param[3]: position (type: Vector3)
Param[4]: scale (type: float)
Param[5]: tint (type: Color)
-Function 491: DrawBillboardRec() (6 input parameters)
+Function 494: DrawBillboardRec() (6 input parameters)
Name: DrawBillboardRec
Return type: void
Description: Draw a billboard texture defined by source
@@ -4151,7 +4173,7 @@ Function 491: DrawBillboardRec() (6 input parameters)
Param[4]: position (type: Vector3)
Param[5]: size (type: Vector2)
Param[6]: tint (type: Color)
-Function 492: DrawBillboardPro() (9 input parameters)
+Function 495: DrawBillboardPro() (9 input parameters)
Name: DrawBillboardPro
Return type: void
Description: Draw a billboard texture defined by source and rotation
@@ -4164,13 +4186,13 @@ Function 492: DrawBillboardPro() (9 input parameters)
Param[7]: origin (type: Vector2)
Param[8]: rotation (type: float)
Param[9]: tint (type: Color)
-Function 493: UploadMesh() (2 input parameters)
+Function 496: UploadMesh() (2 input parameters)
Name: UploadMesh
Return type: void
Description: Upload mesh vertex data in GPU and provide VAO/VBO ids
Param[1]: mesh (type: Mesh *)
Param[2]: dynamic (type: bool)
-Function 494: UpdateMeshBuffer() (5 input parameters)
+Function 497: UpdateMeshBuffer() (5 input parameters)
Name: UpdateMeshBuffer
Return type: void
Description: Update mesh vertex data in GPU for a specific buffer index
@@ -4179,19 +4201,19 @@ Function 494: UpdateMeshBuffer() (5 input parameters)
Param[3]: data (type: const void *)
Param[4]: dataSize (type: int)
Param[5]: offset (type: int)
-Function 495: UnloadMesh() (1 input parameters)
+Function 498: UnloadMesh() (1 input parameters)
Name: UnloadMesh
Return type: void
Description: Unload mesh data from CPU and GPU
Param[1]: mesh (type: Mesh)
-Function 496: DrawMesh() (3 input parameters)
+Function 499: DrawMesh() (3 input parameters)
Name: DrawMesh
Return type: void
Description: Draw a 3d mesh with material and transform
Param[1]: mesh (type: Mesh)
Param[2]: material (type: Material)
Param[3]: transform (type: Matrix)
-Function 497: DrawMeshInstanced() (4 input parameters)
+Function 500: DrawMeshInstanced() (4 input parameters)
Name: DrawMeshInstanced
Return type: void
Description: Draw multiple mesh instances with material and different transforms
@@ -4199,35 +4221,35 @@ Function 497: DrawMeshInstanced() (4 input parameters)
Param[2]: material (type: Material)
Param[3]: transforms (type: const Matrix *)
Param[4]: instances (type: int)
-Function 498: GetMeshBoundingBox() (1 input parameters)
+Function 501: GetMeshBoundingBox() (1 input parameters)
Name: GetMeshBoundingBox
Return type: BoundingBox
Description: Compute mesh bounding box limits
Param[1]: mesh (type: Mesh)
-Function 499: GenMeshTangents() (1 input parameters)
+Function 502: GenMeshTangents() (1 input parameters)
Name: GenMeshTangents
Return type: void
Description: Compute mesh tangents
Param[1]: mesh (type: Mesh *)
-Function 500: ExportMesh() (2 input parameters)
+Function 503: ExportMesh() (2 input parameters)
Name: ExportMesh
Return type: bool
Description: Export mesh data to file, returns true on success
Param[1]: mesh (type: Mesh)
Param[2]: fileName (type: const char *)
-Function 501: ExportMeshAsCode() (2 input parameters)
+Function 504: ExportMeshAsCode() (2 input parameters)
Name: ExportMeshAsCode
Return type: bool
Description: Export mesh as code file (.h) defining multiple arrays of vertex attributes
Param[1]: mesh (type: Mesh)
Param[2]: fileName (type: const char *)
-Function 502: GenMeshPoly() (2 input parameters)
+Function 505: GenMeshPoly() (2 input parameters)
Name: GenMeshPoly
Return type: Mesh
Description: Generate polygonal mesh
Param[1]: sides (type: int)
Param[2]: radius (type: float)
-Function 503: GenMeshPlane() (4 input parameters)
+Function 506: GenMeshPlane() (4 input parameters)
Name: GenMeshPlane
Return type: Mesh
Description: Generate plane mesh (with subdivisions)
@@ -4235,42 +4257,42 @@ Function 503: GenMeshPlane() (4 input parameters)
Param[2]: length (type: float)
Param[3]: resX (type: int)
Param[4]: resZ (type: int)
-Function 504: GenMeshCube() (3 input parameters)
+Function 507: GenMeshCube() (3 input parameters)
Name: GenMeshCube
Return type: Mesh
Description: Generate cuboid mesh
Param[1]: width (type: float)
Param[2]: height (type: float)
Param[3]: length (type: float)
-Function 505: GenMeshSphere() (3 input parameters)
+Function 508: GenMeshSphere() (3 input parameters)
Name: GenMeshSphere
Return type: Mesh
Description: Generate sphere mesh (standard sphere)
Param[1]: radius (type: float)
Param[2]: rings (type: int)
Param[3]: slices (type: int)
-Function 506: GenMeshHemiSphere() (3 input parameters)
+Function 509: GenMeshHemiSphere() (3 input parameters)
Name: GenMeshHemiSphere
Return type: Mesh
Description: Generate half-sphere mesh (no bottom cap)
Param[1]: radius (type: float)
Param[2]: rings (type: int)
Param[3]: slices (type: int)
-Function 507: GenMeshCylinder() (3 input parameters)
+Function 510: GenMeshCylinder() (3 input parameters)
Name: GenMeshCylinder
Return type: Mesh
Description: Generate cylinder mesh
Param[1]: radius (type: float)
Param[2]: height (type: float)
Param[3]: slices (type: int)
-Function 508: GenMeshCone() (3 input parameters)
+Function 511: GenMeshCone() (3 input parameters)
Name: GenMeshCone
Return type: Mesh
Description: Generate cone/pyramid mesh
Param[1]: radius (type: float)
Param[2]: height (type: float)
Param[3]: slices (type: int)
-Function 509: GenMeshTorus() (4 input parameters)
+Function 512: GenMeshTorus() (4 input parameters)
Name: GenMeshTorus
Return type: Mesh
Description: Generate torus mesh
@@ -4278,7 +4300,7 @@ Function 509: GenMeshTorus() (4 input parameters)
Param[2]: size (type: float)
Param[3]: radSeg (type: int)
Param[4]: sides (type: int)
-Function 510: GenMeshKnot() (4 input parameters)
+Function 513: GenMeshKnot() (4 input parameters)
Name: GenMeshKnot
Return type: Mesh
Description: Generate trefoil knot mesh
@@ -4286,67 +4308,67 @@ Function 510: GenMeshKnot() (4 input parameters)
Param[2]: size (type: float)
Param[3]: radSeg (type: int)
Param[4]: sides (type: int)
-Function 511: GenMeshHeightmap() (2 input parameters)
+Function 514: GenMeshHeightmap() (2 input parameters)
Name: GenMeshHeightmap
Return type: Mesh
Description: Generate heightmap mesh from image data
Param[1]: heightmap (type: Image)
Param[2]: size (type: Vector3)
-Function 512: GenMeshCubicmap() (2 input parameters)
+Function 515: GenMeshCubicmap() (2 input parameters)
Name: GenMeshCubicmap
Return type: Mesh
Description: Generate cubes-based map mesh from image data
Param[1]: cubicmap (type: Image)
Param[2]: cubeSize (type: Vector3)
-Function 513: LoadMaterials() (2 input parameters)
+Function 516: LoadMaterials() (2 input parameters)
Name: LoadMaterials
Return type: Material *
Description: Load materials from model file
Param[1]: fileName (type: const char *)
Param[2]: materialCount (type: int *)
-Function 514: LoadMaterialDefault() (0 input parameters)
+Function 517: LoadMaterialDefault() (0 input parameters)
Name: LoadMaterialDefault
Return type: Material
Description: Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps)
No input parameters
-Function 515: IsMaterialValid() (1 input parameters)
+Function 518: IsMaterialValid() (1 input parameters)
Name: IsMaterialValid
Return type: bool
Description: Check if a material is valid (shader assigned, map textures loaded in GPU)
Param[1]: material (type: Material)
-Function 516: UnloadMaterial() (1 input parameters)
+Function 519: UnloadMaterial() (1 input parameters)
Name: UnloadMaterial
Return type: void
Description: Unload material from GPU memory (VRAM)
Param[1]: material (type: Material)
-Function 517: SetMaterialTexture() (3 input parameters)
+Function 520: SetMaterialTexture() (3 input parameters)
Name: SetMaterialTexture
Return type: void
Description: Set texture for a material map type (MATERIAL_MAP_DIFFUSE, MATERIAL_MAP_SPECULAR...)
Param[1]: material (type: Material *)
Param[2]: mapType (type: int)
Param[3]: texture (type: Texture2D)
-Function 518: SetModelMeshMaterial() (3 input parameters)
+Function 521: SetModelMeshMaterial() (3 input parameters)
Name: SetModelMeshMaterial
Return type: void
Description: Set material for a mesh
Param[1]: model (type: Model *)
Param[2]: meshId (type: int)
Param[3]: materialId (type: int)
-Function 519: LoadModelAnimations() (2 input parameters)
+Function 522: LoadModelAnimations() (2 input parameters)
Name: LoadModelAnimations
Return type: ModelAnimation *
Description: Load model animations from file
Param[1]: fileName (type: const char *)
Param[2]: animCount (type: int *)
-Function 520: UpdateModelAnimation() (3 input parameters)
+Function 523: UpdateModelAnimation() (3 input parameters)
Name: UpdateModelAnimation
Return type: void
Description: Update model animation pose (vertex buffers and bone matrices)
Param[1]: model (type: Model)
Param[2]: anim (type: ModelAnimation)
Param[3]: frame (type: float)
-Function 521: UpdateModelAnimationEx() (6 input parameters)
+Function 524: UpdateModelAnimationEx() (6 input parameters)
Name: UpdateModelAnimationEx
Return type: void
Description: Update model animation pose, blending two animations
@@ -4356,19 +4378,19 @@ Function 521: UpdateModelAnimationEx() (6 input parameters)
Param[4]: animB (type: ModelAnimation)
Param[5]: frameB (type: float)
Param[6]: blend (type: float)
-Function 522: UnloadModelAnimations() (2 input parameters)
+Function 525: UnloadModelAnimations() (2 input parameters)
Name: UnloadModelAnimations
Return type: void
Description: Unload animation array data
Param[1]: animations (type: ModelAnimation *)
Param[2]: animCount (type: int)
-Function 523: IsModelAnimationValid() (2 input parameters)
+Function 526: IsModelAnimationValid() (2 input parameters)
Name: IsModelAnimationValid
Return type: bool
Description: Check model animation skeleton match
Param[1]: model (type: Model)
Param[2]: anim (type: ModelAnimation)
-Function 524: CheckCollisionSpheres() (4 input parameters)
+Function 527: CheckCollisionSpheres() (4 input parameters)
Name: CheckCollisionSpheres
Return type: bool
Description: Check collision between two spheres
@@ -4376,40 +4398,40 @@ Function 524: CheckCollisionSpheres() (4 input parameters)
Param[2]: radius1 (type: float)
Param[3]: center2 (type: Vector3)
Param[4]: radius2 (type: float)
-Function 525: CheckCollisionBoxes() (2 input parameters)
+Function 528: CheckCollisionBoxes() (2 input parameters)
Name: CheckCollisionBoxes
Return type: bool
Description: Check collision between two bounding boxes
Param[1]: box1 (type: BoundingBox)
Param[2]: box2 (type: BoundingBox)
-Function 526: CheckCollisionBoxSphere() (3 input parameters)
+Function 529: CheckCollisionBoxSphere() (3 input parameters)
Name: CheckCollisionBoxSphere
Return type: bool
Description: Check collision between box and sphere
Param[1]: box (type: BoundingBox)
Param[2]: center (type: Vector3)
Param[3]: radius (type: float)
-Function 527: GetRayCollisionSphere() (3 input parameters)
+Function 530: GetRayCollisionSphere() (3 input parameters)
Name: GetRayCollisionSphere
Return type: RayCollision
Description: Get collision info between ray and sphere
Param[1]: ray (type: Ray)
Param[2]: center (type: Vector3)
Param[3]: radius (type: float)
-Function 528: GetRayCollisionBox() (2 input parameters)
+Function 531: GetRayCollisionBox() (2 input parameters)
Name: GetRayCollisionBox
Return type: RayCollision
Description: Get collision info between ray and box
Param[1]: ray (type: Ray)
Param[2]: box (type: BoundingBox)
-Function 529: GetRayCollisionMesh() (3 input parameters)
+Function 532: GetRayCollisionMesh() (3 input parameters)
Name: GetRayCollisionMesh
Return type: RayCollision
Description: Get collision info between ray and mesh
Param[1]: ray (type: Ray)
Param[2]: mesh (type: Mesh)
Param[3]: transform (type: Matrix)
-Function 530: GetRayCollisionTriangle() (4 input parameters)
+Function 533: GetRayCollisionTriangle() (4 input parameters)
Name: GetRayCollisionTriangle
Return type: RayCollision
Description: Get collision info between ray and triangle
@@ -4417,7 +4439,7 @@ Function 530: GetRayCollisionTriangle() (4 input parameters)
Param[2]: p1 (type: Vector3)
Param[3]: p2 (type: Vector3)
Param[4]: p3 (type: Vector3)
-Function 531: GetRayCollisionQuad() (5 input parameters)
+Function 534: GetRayCollisionQuad() (5 input parameters)
Name: GetRayCollisionQuad
Return type: RayCollision
Description: Get collision info between ray and quad
@@ -4426,158 +4448,158 @@ Function 531: GetRayCollisionQuad() (5 input parameters)
Param[3]: p2 (type: Vector3)
Param[4]: p3 (type: Vector3)
Param[5]: p4 (type: Vector3)
-Function 532: InitAudioDevice() (0 input parameters)
+Function 535: InitAudioDevice() (0 input parameters)
Name: InitAudioDevice
Return type: void
Description: Initialize audio device and context
No input parameters
-Function 533: CloseAudioDevice() (0 input parameters)
+Function 536: CloseAudioDevice() (0 input parameters)
Name: CloseAudioDevice
Return type: void
Description: Close the audio device and context
No input parameters
-Function 534: IsAudioDeviceReady() (0 input parameters)
+Function 537: IsAudioDeviceReady() (0 input parameters)
Name: IsAudioDeviceReady
Return type: bool
Description: Check if audio device has been initialized successfully
No input parameters
-Function 535: SetMasterVolume() (1 input parameters)
+Function 538: SetMasterVolume() (1 input parameters)
Name: SetMasterVolume
Return type: void
Description: Set master volume (listener)
Param[1]: volume (type: float)
-Function 536: GetMasterVolume() (0 input parameters)
+Function 539: GetMasterVolume() (0 input parameters)
Name: GetMasterVolume
Return type: float
Description: Get master volume (listener)
No input parameters
-Function 537: LoadWave() (1 input parameters)
+Function 540: LoadWave() (1 input parameters)
Name: LoadWave
Return type: Wave
Description: Load wave data from file
Param[1]: fileName (type: const char *)
-Function 538: LoadWaveFromMemory() (3 input parameters)
+Function 541: LoadWaveFromMemory() (3 input parameters)
Name: LoadWaveFromMemory
Return type: Wave
Description: Load wave from memory buffer, fileType refers to extension: i.e. '.wav'
Param[1]: fileType (type: const char *)
Param[2]: fileData (type: const unsigned char *)
Param[3]: dataSize (type: int)
-Function 539: IsWaveValid() (1 input parameters)
+Function 542: IsWaveValid() (1 input parameters)
Name: IsWaveValid
Return type: bool
Description: Checks if wave data is valid (data loaded and parameters)
Param[1]: wave (type: Wave)
-Function 540: LoadSound() (1 input parameters)
+Function 543: LoadSound() (1 input parameters)
Name: LoadSound
Return type: Sound
Description: Load sound from file
Param[1]: fileName (type: const char *)
-Function 541: LoadSoundFromWave() (1 input parameters)
+Function 544: LoadSoundFromWave() (1 input parameters)
Name: LoadSoundFromWave
Return type: Sound
Description: Load sound from wave data
Param[1]: wave (type: Wave)
-Function 542: LoadSoundAlias() (1 input parameters)
+Function 545: LoadSoundAlias() (1 input parameters)
Name: LoadSoundAlias
Return type: Sound
Description: Create a new sound that shares the same sample data as the source sound, does not own the sound data
Param[1]: source (type: Sound)
-Function 543: IsSoundValid() (1 input parameters)
+Function 546: IsSoundValid() (1 input parameters)
Name: IsSoundValid
Return type: bool
Description: Checks if a sound is valid (data loaded and buffers initialized)
Param[1]: sound (type: Sound)
-Function 544: UpdateSound() (3 input parameters)
+Function 547: UpdateSound() (3 input parameters)
Name: UpdateSound
Return type: void
Description: Update sound buffer with new data (default data format: 32 bit float, stereo)
Param[1]: sound (type: Sound)
Param[2]: data (type: const void *)
Param[3]: sampleCount (type: int)
-Function 545: UnloadWave() (1 input parameters)
+Function 548: UnloadWave() (1 input parameters)
Name: UnloadWave
Return type: void
Description: Unload wave data
Param[1]: wave (type: Wave)
-Function 546: UnloadSound() (1 input parameters)
+Function 549: UnloadSound() (1 input parameters)
Name: UnloadSound
Return type: void
Description: Unload sound
Param[1]: sound (type: Sound)
-Function 547: UnloadSoundAlias() (1 input parameters)
+Function 550: UnloadSoundAlias() (1 input parameters)
Name: UnloadSoundAlias
Return type: void
Description: Unload a sound alias (does not deallocate sample data)
Param[1]: alias (type: Sound)
-Function 548: ExportWave() (2 input parameters)
+Function 551: ExportWave() (2 input parameters)
Name: ExportWave
Return type: bool
Description: Export wave data to file, returns true on success
Param[1]: wave (type: Wave)
Param[2]: fileName (type: const char *)
-Function 549: ExportWaveAsCode() (2 input parameters)
+Function 552: ExportWaveAsCode() (2 input parameters)
Name: ExportWaveAsCode
Return type: bool
Description: Export wave sample data to code (.h), returns true on success
Param[1]: wave (type: Wave)
Param[2]: fileName (type: const char *)
-Function 550: PlaySound() (1 input parameters)
+Function 553: PlaySound() (1 input parameters)
Name: PlaySound
Return type: void
Description: Play a sound
Param[1]: sound (type: Sound)
-Function 551: StopSound() (1 input parameters)
+Function 554: StopSound() (1 input parameters)
Name: StopSound
Return type: void
Description: Stop playing a sound
Param[1]: sound (type: Sound)
-Function 552: PauseSound() (1 input parameters)
+Function 555: PauseSound() (1 input parameters)
Name: PauseSound
Return type: void
Description: Pause a sound
Param[1]: sound (type: Sound)
-Function 553: ResumeSound() (1 input parameters)
+Function 556: ResumeSound() (1 input parameters)
Name: ResumeSound
Return type: void
Description: Resume a paused sound
Param[1]: sound (type: Sound)
-Function 554: IsSoundPlaying() (1 input parameters)
+Function 557: IsSoundPlaying() (1 input parameters)
Name: IsSoundPlaying
Return type: bool
Description: Check if a sound is currently playing
Param[1]: sound (type: Sound)
-Function 555: SetSoundVolume() (2 input parameters)
+Function 558: SetSoundVolume() (2 input parameters)
Name: SetSoundVolume
Return type: void
Description: Set volume for a sound (1.0 is max level)
Param[1]: sound (type: Sound)
Param[2]: volume (type: float)
-Function 556: SetSoundPitch() (2 input parameters)
+Function 559: SetSoundPitch() (2 input parameters)
Name: SetSoundPitch
Return type: void
Description: Set pitch for a sound (1.0 is base level)
Param[1]: sound (type: Sound)
Param[2]: pitch (type: float)
-Function 557: SetSoundPan() (2 input parameters)
+Function 560: SetSoundPan() (2 input parameters)
Name: SetSoundPan
Return type: void
Description: Set pan for a sound (-1.0 left, 0.0 center, 1.0 right)
Param[1]: sound (type: Sound)
Param[2]: pan (type: float)
-Function 558: WaveCopy() (1 input parameters)
+Function 561: WaveCopy() (1 input parameters)
Name: WaveCopy
Return type: Wave
Description: Copy a wave to a new wave
Param[1]: wave (type: Wave)
-Function 559: WaveCrop() (3 input parameters)
+Function 562: WaveCrop() (3 input parameters)
Name: WaveCrop
Return type: void
Description: Crop a wave to defined frames range
Param[1]: wave (type: Wave *)
Param[2]: initFrame (type: int)
Param[3]: finalFrame (type: int)
-Function 560: WaveFormat() (4 input parameters)
+Function 563: WaveFormat() (4 input parameters)
Name: WaveFormat
Return type: void
Description: Convert wave data to desired format
@@ -4585,203 +4607,203 @@ Function 560: WaveFormat() (4 input parameters)
Param[2]: sampleRate (type: int)
Param[3]: sampleSize (type: int)
Param[4]: channels (type: int)
-Function 561: LoadWaveSamples() (1 input parameters)
+Function 564: LoadWaveSamples() (1 input parameters)
Name: LoadWaveSamples
Return type: float *
Description: Load samples data from wave as a 32bit float data array
Param[1]: wave (type: Wave)
-Function 562: UnloadWaveSamples() (1 input parameters)
+Function 565: UnloadWaveSamples() (1 input parameters)
Name: UnloadWaveSamples
Return type: void
Description: Unload samples data loaded with LoadWaveSamples()
Param[1]: samples (type: float *)
-Function 563: LoadMusicStream() (1 input parameters)
+Function 566: LoadMusicStream() (1 input parameters)
Name: LoadMusicStream
Return type: Music
Description: Load music stream from file
Param[1]: fileName (type: const char *)
-Function 564: LoadMusicStreamFromMemory() (3 input parameters)
+Function 567: LoadMusicStreamFromMemory() (3 input parameters)
Name: LoadMusicStreamFromMemory
Return type: Music
Description: Load music stream from data
Param[1]: fileType (type: const char *)
Param[2]: data (type: const unsigned char *)
Param[3]: dataSize (type: int)
-Function 565: IsMusicValid() (1 input parameters)
+Function 568: IsMusicValid() (1 input parameters)
Name: IsMusicValid
Return type: bool
Description: Checks if a music stream is valid (context and buffers initialized)
Param[1]: music (type: Music)
-Function 566: UnloadMusicStream() (1 input parameters)
+Function 569: UnloadMusicStream() (1 input parameters)
Name: UnloadMusicStream
Return type: void
Description: Unload music stream
Param[1]: music (type: Music)
-Function 567: PlayMusicStream() (1 input parameters)
+Function 570: PlayMusicStream() (1 input parameters)
Name: PlayMusicStream
Return type: void
Description: Start music playing
Param[1]: music (type: Music)
-Function 568: IsMusicStreamPlaying() (1 input parameters)
+Function 571: IsMusicStreamPlaying() (1 input parameters)
Name: IsMusicStreamPlaying
Return type: bool
Description: Check if music is playing
Param[1]: music (type: Music)
-Function 569: UpdateMusicStream() (1 input parameters)
+Function 572: UpdateMusicStream() (1 input parameters)
Name: UpdateMusicStream
Return type: void
Description: Updates buffers for music streaming
Param[1]: music (type: Music)
-Function 570: StopMusicStream() (1 input parameters)
+Function 573: StopMusicStream() (1 input parameters)
Name: StopMusicStream
Return type: void
Description: Stop music playing
Param[1]: music (type: Music)
-Function 571: PauseMusicStream() (1 input parameters)
+Function 574: PauseMusicStream() (1 input parameters)
Name: PauseMusicStream
Return type: void
Description: Pause music playing
Param[1]: music (type: Music)
-Function 572: ResumeMusicStream() (1 input parameters)
+Function 575: ResumeMusicStream() (1 input parameters)
Name: ResumeMusicStream
Return type: void
Description: Resume playing paused music
Param[1]: music (type: Music)
-Function 573: SeekMusicStream() (2 input parameters)
+Function 576: SeekMusicStream() (2 input parameters)
Name: SeekMusicStream
Return type: void
Description: Seek music to a position (in seconds)
Param[1]: music (type: Music)
Param[2]: position (type: float)
-Function 574: SetMusicVolume() (2 input parameters)
+Function 577: SetMusicVolume() (2 input parameters)
Name: SetMusicVolume
Return type: void
Description: Set volume for music (1.0 is max level)
Param[1]: music (type: Music)
Param[2]: volume (type: float)
-Function 575: SetMusicPitch() (2 input parameters)
+Function 578: SetMusicPitch() (2 input parameters)
Name: SetMusicPitch
Return type: void
Description: Set pitch for a music (1.0 is base level)
Param[1]: music (type: Music)
Param[2]: pitch (type: float)
-Function 576: SetMusicPan() (2 input parameters)
+Function 579: SetMusicPan() (2 input parameters)
Name: SetMusicPan
Return type: void
Description: Set pan for a music (-1.0 left, 0.0 center, 1.0 right)
Param[1]: music (type: Music)
Param[2]: pan (type: float)
-Function 577: GetMusicTimeLength() (1 input parameters)
+Function 580: GetMusicTimeLength() (1 input parameters)
Name: GetMusicTimeLength
Return type: float
Description: Get music time length (in seconds)
Param[1]: music (type: Music)
-Function 578: GetMusicTimePlayed() (1 input parameters)
+Function 581: GetMusicTimePlayed() (1 input parameters)
Name: GetMusicTimePlayed
Return type: float
Description: Get current music time played (in seconds)
Param[1]: music (type: Music)
-Function 579: LoadAudioStream() (3 input parameters)
+Function 582: LoadAudioStream() (3 input parameters)
Name: LoadAudioStream
Return type: AudioStream
Description: Load audio stream (to stream raw audio pcm data)
Param[1]: sampleRate (type: unsigned int)
Param[2]: sampleSize (type: unsigned int)
Param[3]: channels (type: unsigned int)
-Function 580: IsAudioStreamValid() (1 input parameters)
+Function 583: IsAudioStreamValid() (1 input parameters)
Name: IsAudioStreamValid
Return type: bool
Description: Checks if an audio stream is valid (buffers initialized)
Param[1]: stream (type: AudioStream)
-Function 581: UnloadAudioStream() (1 input parameters)
+Function 584: UnloadAudioStream() (1 input parameters)
Name: UnloadAudioStream
Return type: void
Description: Unload audio stream and free memory
Param[1]: stream (type: AudioStream)
-Function 582: UpdateAudioStream() (3 input parameters)
+Function 585: UpdateAudioStream() (3 input parameters)
Name: UpdateAudioStream
Return type: void
Description: Update audio stream buffers with data
Param[1]: stream (type: AudioStream)
Param[2]: data (type: const void *)
Param[3]: frameCount (type: int)
-Function 583: IsAudioStreamProcessed() (1 input parameters)
+Function 586: IsAudioStreamProcessed() (1 input parameters)
Name: IsAudioStreamProcessed
Return type: bool
Description: Check if any audio stream buffers requires refill
Param[1]: stream (type: AudioStream)
-Function 584: PlayAudioStream() (1 input parameters)
+Function 587: PlayAudioStream() (1 input parameters)
Name: PlayAudioStream
Return type: void
Description: Play audio stream
Param[1]: stream (type: AudioStream)
-Function 585: PauseAudioStream() (1 input parameters)
+Function 588: PauseAudioStream() (1 input parameters)
Name: PauseAudioStream
Return type: void
Description: Pause audio stream
Param[1]: stream (type: AudioStream)
-Function 586: ResumeAudioStream() (1 input parameters)
+Function 589: ResumeAudioStream() (1 input parameters)
Name: ResumeAudioStream
Return type: void
Description: Resume audio stream
Param[1]: stream (type: AudioStream)
-Function 587: IsAudioStreamPlaying() (1 input parameters)
+Function 590: IsAudioStreamPlaying() (1 input parameters)
Name: IsAudioStreamPlaying
Return type: bool
Description: Check if audio stream is playing
Param[1]: stream (type: AudioStream)
-Function 588: StopAudioStream() (1 input parameters)
+Function 591: StopAudioStream() (1 input parameters)
Name: StopAudioStream
Return type: void
Description: Stop audio stream
Param[1]: stream (type: AudioStream)
-Function 589: SetAudioStreamVolume() (2 input parameters)
+Function 592: SetAudioStreamVolume() (2 input parameters)
Name: SetAudioStreamVolume
Return type: void
Description: Set volume for audio stream (1.0 is max level)
Param[1]: stream (type: AudioStream)
Param[2]: volume (type: float)
-Function 590: SetAudioStreamPitch() (2 input parameters)
+Function 593: SetAudioStreamPitch() (2 input parameters)
Name: SetAudioStreamPitch
Return type: void
Description: Set pitch for audio stream (1.0 is base level)
Param[1]: stream (type: AudioStream)
Param[2]: pitch (type: float)
-Function 591: SetAudioStreamPan() (2 input parameters)
+Function 594: SetAudioStreamPan() (2 input parameters)
Name: SetAudioStreamPan
Return type: void
Description: Set pan for audio stream (-1.0 to 1.0 range, 0.0 is centered)
Param[1]: stream (type: AudioStream)
Param[2]: pan (type: float)
-Function 592: SetAudioStreamBufferSizeDefault() (1 input parameters)
+Function 595: SetAudioStreamBufferSizeDefault() (1 input parameters)
Name: SetAudioStreamBufferSizeDefault
Return type: void
Description: Default size for new audio streams
Param[1]: size (type: int)
-Function 593: SetAudioStreamCallback() (2 input parameters)
+Function 596: SetAudioStreamCallback() (2 input parameters)
Name: SetAudioStreamCallback
Return type: void
Description: Audio thread callback to request new data
Param[1]: stream (type: AudioStream)
Param[2]: callback (type: AudioCallback)
-Function 594: AttachAudioStreamProcessor() (2 input parameters)
+Function 597: AttachAudioStreamProcessor() (2 input parameters)
Name: AttachAudioStreamProcessor
Return type: void
Description: Attach audio stream processor to stream, receives frames x 2 samples as 'float' (stereo)
Param[1]: stream (type: AudioStream)
Param[2]: processor (type: AudioCallback)
-Function 595: DetachAudioStreamProcessor() (2 input parameters)
+Function 598: DetachAudioStreamProcessor() (2 input parameters)
Name: DetachAudioStreamProcessor
Return type: void
Description: Detach audio stream processor from stream
Param[1]: stream (type: AudioStream)
Param[2]: processor (type: AudioCallback)
-Function 596: AttachAudioMixedProcessor() (1 input parameters)
+Function 599: AttachAudioMixedProcessor() (1 input parameters)
Name: AttachAudioMixedProcessor
Return type: void
Description: Attach audio stream processor to the entire audio pipeline, receives frames x 2 samples as 'float' (stereo)
Param[1]: processor (type: AudioCallback)
-Function 597: DetachAudioMixedProcessor() (1 input parameters)
+Function 600: DetachAudioMixedProcessor() (1 input parameters)
Name: DetachAudioMixedProcessor
Return type: void
Description: Detach audio stream processor from the entire audio pipeline
diff --git a/tools/rlparser/output/raylib_api.xml b/tools/rlparser/output/raylib_api.xml
index 408ff18c7..62d8bdfaf 100644
--- a/tools/rlparser/output/raylib_api.xml
+++ b/tools/rlparser/output/raylib_api.xml
@@ -682,7 +682,7 @@
-
+
@@ -1809,7 +1809,7 @@
-
+
@@ -2525,18 +2525,34 @@
-
+
-
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+