renderGlyphLcd method
Implementation
Pointer<SdlSurface> renderGlyphLcd(int ch, int fg, int bg) {
var fgPointer = calloc<SdlColor>()..fromU32(fg);
var bgPointer = calloc<SdlColor>()..fromU32(bg);
// 2711
var result = ttfRenderGlyphLcd(this, ch, fgPointer.ref, bgPointer.ref);
calloc.free(fgPointer);
calloc.free(bgPointer);
return result;
}