rlparser: update raylib_api.* by CI

This commit is contained in:
github-actions[bot] 2025-10-19 18:11:13 +00:00
parent 11e5761a88
commit 52269eb590
4 changed files with 561 additions and 544 deletions

View File

@ -3590,6 +3590,11 @@
"description": "Check if cursor is on the screen", "description": "Check if cursor is on the screen",
"returnType": "bool" "returnType": "bool"
}, },
{
"name": "IsCursorDisabled",
"description": "Check if cursor is disabled (locked)",
"returnType": "bool"
},
{ {
"name": "ClearBackground", "name": "ClearBackground",
"description": "Set background color (framebuffer clear color)", "description": "Set background color (framebuffer clear color)",

View File

@ -3467,6 +3467,11 @@ return {
description = "Check if cursor is on the screen", description = "Check if cursor is on the screen",
returnType = "bool" returnType = "bool"
}, },
{
name = "IsCursorDisabled",
description = "Check if cursor is disabled (locked)",
returnType = "bool"
},
{ {
name = "ClearBackground", name = "ClearBackground",
description = "Set background color (framebuffer clear color)", description = "Set background color (framebuffer clear color)",

File diff suppressed because it is too large Load Diff

View File

@ -679,7 +679,7 @@
<Param type="unsigned int" name="frames" desc="" /> <Param type="unsigned int" name="frames" desc="" />
</Callback> </Callback>
</Callbacks> </Callbacks>
<Functions count="597"> <Functions count="598">
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context"> <Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
<Param type="int" name="width" desc="" /> <Param type="int" name="width" desc="" />
<Param type="int" name="height" desc="" /> <Param type="int" name="height" desc="" />
@ -818,6 +818,8 @@
</Function> </Function>
<Function name="IsCursorOnScreen" retType="bool" paramCount="0" desc="Check if cursor is on the screen"> <Function name="IsCursorOnScreen" retType="bool" paramCount="0" desc="Check if cursor is on the screen">
</Function> </Function>
<Function name="IsCursorDisabled" retType="bool" paramCount="0" desc="Check if cursor is disabled (locked)">
</Function>
<Function name="ClearBackground" retType="void" paramCount="1" desc="Set background color (framebuffer clear color)"> <Function name="ClearBackground" retType="void" paramCount="1" desc="Set background color (framebuffer clear color)">
<Param type="Color" name="color" desc="" /> <Param type="Color" name="color" desc="" />
</Function> </Function>