Update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2025-08-31 09:39:29 +00:00
parent ecedf40da6
commit f2adb0272d
4 changed files with 12 additions and 12 deletions

View File

@@ -9041,7 +9041,7 @@
"name": "fontSize" "name": "fontSize"
}, },
{ {
"type": "int *", "type": "const int *",
"name": "codepoints" "name": "codepoints"
}, },
{ {
@@ -9091,7 +9091,7 @@
"name": "fontSize" "name": "fontSize"
}, },
{ {
"type": "int *", "type": "const int *",
"name": "codepoints" "name": "codepoints"
}, },
{ {
@@ -9129,7 +9129,7 @@
"name": "fontSize" "name": "fontSize"
}, },
{ {
"type": "int *", "type": "const int *",
"name": "codepoints" "name": "codepoints"
}, },
{ {

View File

@@ -6550,7 +6550,7 @@ return {
params = { params = {
{type = "const char *", name = "fileName"}, {type = "const char *", name = "fileName"},
{type = "int", name = "fontSize"}, {type = "int", name = "fontSize"},
{type = "int *", name = "codepoints"}, {type = "const int *", name = "codepoints"},
{type = "int", name = "codepointCount"} {type = "int", name = "codepointCount"}
} }
}, },
@@ -6573,7 +6573,7 @@ return {
{type = "const unsigned char *", name = "fileData"}, {type = "const unsigned char *", name = "fileData"},
{type = "int", name = "dataSize"}, {type = "int", name = "dataSize"},
{type = "int", name = "fontSize"}, {type = "int", name = "fontSize"},
{type = "int *", name = "codepoints"}, {type = "const int *", name = "codepoints"},
{type = "int", name = "codepointCount"} {type = "int", name = "codepointCount"}
} }
}, },
@@ -6593,7 +6593,7 @@ return {
{type = "const unsigned char *", name = "fileData"}, {type = "const unsigned char *", name = "fileData"},
{type = "int", name = "dataSize"}, {type = "int", name = "dataSize"},
{type = "int", name = "fontSize"}, {type = "int", name = "fontSize"},
{type = "int *", name = "codepoints"}, {type = "const int *", name = "codepoints"},
{type = "int", name = "codepointCount"}, {type = "int", name = "codepointCount"},
{type = "int", name = "type"} {type = "int", name = "type"}
} }

View File

@@ -3468,7 +3468,7 @@ Function 395: LoadFontEx() (4 input parameters)
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 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
Param[1]: fileName (type: const char *) Param[1]: fileName (type: const char *)
Param[2]: fontSize (type: int) Param[2]: fontSize (type: int)
Param[3]: codepoints (type: int *) Param[3]: codepoints (type: const int *)
Param[4]: codepointCount (type: int) Param[4]: codepointCount (type: int)
Function 396: LoadFontFromImage() (3 input parameters) Function 396: LoadFontFromImage() (3 input parameters)
Name: LoadFontFromImage Name: LoadFontFromImage
@@ -3485,7 +3485,7 @@ Function 397: LoadFontFromMemory() (6 input parameters)
Param[2]: fileData (type: const unsigned char *) Param[2]: fileData (type: const unsigned char *)
Param[3]: dataSize (type: int) Param[3]: dataSize (type: int)
Param[4]: fontSize (type: int) Param[4]: fontSize (type: int)
Param[5]: codepoints (type: int *) Param[5]: codepoints (type: const int *)
Param[6]: codepointCount (type: int) Param[6]: codepointCount (type: int)
Function 398: IsFontValid() (1 input parameters) Function 398: IsFontValid() (1 input parameters)
Name: IsFontValid Name: IsFontValid
@@ -3499,7 +3499,7 @@ Function 399: LoadFontData() (6 input parameters)
Param[1]: fileData (type: const unsigned char *) Param[1]: fileData (type: const unsigned char *)
Param[2]: dataSize (type: int) Param[2]: dataSize (type: int)
Param[3]: fontSize (type: int) Param[3]: fontSize (type: int)
Param[4]: codepoints (type: int *) Param[4]: codepoints (type: const int *)
Param[5]: codepointCount (type: int) Param[5]: codepointCount (type: int)
Param[6]: type (type: int) Param[6]: type (type: int)
Function 400: GenImageFontAtlas() (6 input parameters) Function 400: GenImageFontAtlas() (6 input parameters)

View File

@@ -2286,7 +2286,7 @@
<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"> <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="const char *" name="fileName" desc="" />
<Param type="int" name="fontSize" desc="" /> <Param type="int" name="fontSize" desc="" />
<Param type="int *" name="codepoints" desc="" /> <Param type="const int *" name="codepoints" desc="" />
<Param type="int" name="codepointCount" desc="" /> <Param type="int" name="codepointCount" desc="" />
</Function> </Function>
<Function name="LoadFontFromImage" retType="Font" paramCount="3" desc="Load font from Image (XNA style)"> <Function name="LoadFontFromImage" retType="Font" paramCount="3" desc="Load font from Image (XNA style)">
@@ -2299,7 +2299,7 @@
<Param type="const unsigned char *" name="fileData" desc="" /> <Param type="const unsigned char *" name="fileData" desc="" />
<Param type="int" name="dataSize" desc="" /> <Param type="int" name="dataSize" desc="" />
<Param type="int" name="fontSize" desc="" /> <Param type="int" name="fontSize" desc="" />
<Param type="int *" name="codepoints" desc="" /> <Param type="const int *" name="codepoints" desc="" />
<Param type="int" name="codepointCount" desc="" /> <Param type="int" name="codepointCount" desc="" />
</Function> </Function>
<Function name="IsFontValid" retType="bool" paramCount="1" desc="Check if a font is valid (font data loaded, WARNING: GPU texture not checked)"> <Function name="IsFontValid" retType="bool" paramCount="1" desc="Check if a font is valid (font data loaded, WARNING: GPU texture not checked)">
@@ -2309,7 +2309,7 @@
<Param type="const unsigned char *" name="fileData" desc="" /> <Param type="const unsigned char *" name="fileData" desc="" />
<Param type="int" name="dataSize" desc="" /> <Param type="int" name="dataSize" desc="" />
<Param type="int" name="fontSize" desc="" /> <Param type="int" name="fontSize" desc="" />
<Param type="int *" name="codepoints" desc="" /> <Param type="const int *" name="codepoints" desc="" />
<Param type="int" name="codepointCount" desc="" /> <Param type="int" name="codepointCount" desc="" />
<Param type="int" name="type" desc="" /> <Param type="int" name="type" desc="" />
</Function> </Function>