LoadUTF8 method
Implementation
@override
String LoadUTF8(
Int32List codepoints,
) => run(
() => RaylibDebugLabels.LoadUTF8(codepoints),
() {
final utf8 = rl.Core.LoadUTF8(
rl.Temp.Int$.Array(codepoints),
codepoints.length,
);
try {
return utf8.toD;
} finally {
rl.Core.UnloadUTF8(utf8);
}
},
);