rlparser: update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2026-03-05 10:50:09 +00:00
parent 02b592cd7b
commit ea00b97c59
4 changed files with 233 additions and 178 deletions

View File

@ -6845,6 +6845,18 @@ return {
{type = "float", name = "spacing"}
}
},
{
name = "MeasureTextCodepoints",
description = "Measure string size for an existing array of codepoints for Font",
returnType = "Vector2",
params = {
{type = "Font", name = "font"},
{type = "const int *", name = "codepoints"},
{type = "int", name = "length"},
{type = "float", name = "fontSize"},
{type = "float", name = "spacing"}
}
},
{
name = "GetGlyphIndex",
description = "Get glyph index position in font for a codepoint (unicode character), fallback to '?' if not found",