rlparser: update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2026-04-27 09:48:08 +00:00
parent 98efce4b0d
commit 79d5353cfd
4 changed files with 355 additions and 293 deletions

View File

@ -5383,7 +5383,7 @@ return {
}
},
{
name = "GetSplinePointBezierQuad",
name = "GetSplinePointBezierQuadratic",
description = "Get (evaluate) spline point: Quadratic Bezier",
returnType = "Vector2",
params = {
@ -5981,7 +5981,7 @@ return {
returnType = "void",
params = {
{type = "Image *", name = "image"},
{type = "float", name = "contrast"}
{type = "int", name = "contrast"}
}
},
{
@ -6206,6 +6206,19 @@ return {
name = "ImageDrawRectangleLines",
description = "Draw rectangle lines within an image",
returnType = "void",
params = {
{type = "Image *", name = "dst"},
{type = "int", name = "posX"},
{type = "int", name = "posY"},
{type = "int", name = "width"},
{type = "int", name = "height"},
{type = "Color", name = "color"}
}
},
{
name = "ImageDrawRectangleLinesEx",
description = "Draw rectangle lines within an image with extended parameters",
returnType = "void",
params = {
{type = "Image *", name = "dst"},
{type = "Rectangle", name = "rec"},
@ -8032,16 +8045,6 @@ return {
{type = "Wave", name = "wave"}
}
},
{
name = "UpdateSound",
description = "Update sound buffer with new data (default data format: 32 bit float, stereo)",
returnType = "void",
params = {
{type = "Sound", name = "sound"},
{type = "const void *", name = "data"},
{type = "int", name = "sampleCount"}
}
},
{
name = "LoadSoundAlias",
description = "Load sound alias, new sound that shares the same sample data as the source sound, does not own the sound data",
@ -8058,6 +8061,16 @@ return {
{type = "Sound", name = "sound"}
}
},
{
name = "UpdateSound",
description = "Update sound buffer with new data (default data format: 32 bit float, stereo)",
returnType = "void",
params = {
{type = "Sound", name = "sound"},
{type = "const void *", name = "data"},
{type = "int", name = "frameCount"}
}
},
{
name = "UnloadWave",
description = "Unload wave data",