Browse Source

Update raylib_api.* by CI

pull/4325/head
github-actions[bot] 2 months ago
parent
commit
68e7cadabc
4 changed files with 238 additions and 197 deletions
  1. +20
    -1
      parser/output/raylib_api.json
  2. +11
    -1
      parser/output/raylib_api.lua
  3. +200
    -193
      parser/output/raylib_api.txt
  4. +7
    -2
      parser/output/raylib_api.xml

+ 20
- 1
parser/output/raylib_api.json View File

@ -8844,6 +8844,25 @@
}
]
},
{
"name": "ColorLerp",
"description": "Mix 2 Colors Together",
"returnType": "Color",
"params": [
{
"type": "Color",
"name": "color1"
},
{
"type": "Color",
"name": "color2"
},
{
"type": "float",
"name": "d"
}
]
},
{
"name": "GetFontDefault",
"description": "Get the default Font",
@ -8862,7 +8881,7 @@
},
{
"name": "LoadFontEx",
"description": "Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character setFont",
"description": "Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height",
"returnType": "Font",
"params": [
{

+ 11
- 1
parser/output/raylib_api.lua View File

@ -6414,6 +6414,16 @@ return {
{type = "int", name = "format"}
}
},
{
name = "ColorLerp",
description = "Mix 2 Colors Together",
returnType = "Color",
params = {
{type = "Color", name = "color1"},
{type = "Color", name = "color2"},
{type = "float", name = "d"}
}
},
{
name = "GetFontDefault",
description = "Get the default Font",
@ -6429,7 +6439,7 @@ return {
},
{
name = "LoadFontEx",
description = "Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character setFont",
description = "Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height",
returnType = "Font",
params = {
{type = "const char *", name = "fileName"},

+ 200
- 193
parser/output/raylib_api.txt
File diff suppressed because it is too large
View File


+ 7
- 2
parser/output/raylib_api.xml View File

@ -670,7 +670,7 @@
<Param type="unsigned int" name="frames" desc="" />
</Callback>
</Callbacks>
<Functions count="575">
<Functions count="576">
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
<Param type="int" name="width" desc="" />
<Param type="int" name="height" desc="" />
@ -2236,12 +2236,17 @@
<Param type="int" name="height" desc="" />
<Param type="int" name="format" desc="" />
</Function>
<Function name="ColorLerp" retType="Color" paramCount="3" desc="Mix 2 Colors Together">
<Param type="Color" name="color1" desc="" />
<Param type="Color" name="color2" desc="" />
<Param type="float" name="d" desc="" />
</Function>
<Function name="GetFontDefault" retType="Font" paramCount="0" desc="Get the default Font">
</Function>
<Function name="LoadFont" retType="Font" paramCount="1" desc="Load font from file into GPU memory (VRAM)">
<Param type="const char *" name="fileName" desc="" />
</Function>
<Function name="LoadFontEx" retType="Font" paramCount="4" desc="Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character setFont">
<Function name="LoadFontEx" retType="Font" paramCount="4" desc="Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height">
<Param type="const char *" name="fileName" desc="" />
<Param type="int" name="fontSize" desc="" />
<Param type="int *" name="codepoints" desc="" />

Loading…
Cancel
Save