rlparser: update raylib_api.* by CI
This commit is contained in:
parent
11e5761a88
commit
52269eb590
|
|
@ -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)",
|
||||||
|
|
|
||||||
|
|
@ -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
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user