Update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2025-09-02 15:46:09 +00:00
parent 29ce5d8aa9
commit 17d9927a4f
4 changed files with 22 additions and 15 deletions

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
Param[1]: fileName (type: const char *)
Param[2]: fontSize (type: int)
Param[3]: codepoints (type: int *)
Param[3]: codepoints (type: const int *)
Param[4]: codepointCount (type: int)
Function 396: LoadFontFromImage() (3 input parameters)
Name: LoadFontFromImage
@ -3485,23 +3485,24 @@ Function 397: LoadFontFromMemory() (6 input parameters)
Param[2]: fileData (type: const unsigned char *)
Param[3]: dataSize (type: int)
Param[4]: fontSize (type: int)
Param[5]: codepoints (type: int *)
Param[5]: codepoints (type: const int *)
Param[6]: codepointCount (type: int)
Function 398: IsFontValid() (1 input parameters)
Name: IsFontValid
Return type: bool
Description: Check if a font is valid (font data loaded, WARNING: GPU texture not checked)
Param[1]: font (type: Font)
Function 399: LoadFontData() (6 input parameters)
Function 399: LoadFontData() (7 input parameters)
Name: LoadFontData
Return type: GlyphInfo *
Description: Load font data for further use
Param[1]: fileData (type: const unsigned char *)
Param[2]: dataSize (type: int)
Param[3]: fontSize (type: int)
Param[4]: codepoints (type: int *)
Param[4]: codepoints (type: const int *)
Param[5]: codepointCount (type: int)
Param[6]: type (type: int)
Param[7]: glyphCount (type: int *)
Function 400: GenImageFontAtlas() (6 input parameters)
Name: GenImageFontAtlas
Return type: Image