LoadFont method
Load font from file into GPU memory (VRAM)
Implementation
@override
FontD LoadFont(
MemoryPointer<RChar> fileName,
) => $.Font$.RefCapture(
RaylibCaptureIds.LoadFont,
(p) => _ffi.LoadFont(
fileName.asNativePointer(),
).toDart(p.asNativePointer()),
);