stbtt_GetGlyphBitmapSubpixel function
- @Native<Pointer<ma_uint8> Function(Pointer<stbtt_fontinfo>, Float, Float, Float, Float, Int, Pointer<Int>, Pointer<Int>, Pointer<Int>, Pointer<Int>)>(ffi.Pointer<stbtt_fontinfo>, ffi.Float, ffi.Float, ffi.Float, ffi.Float, ffi.Int, ffi.Pointer<ffi.Int>, ffi.Pointer<ffi.Int>, ffi.Pointer<ffi.Int>, ffi.Pointer<ffi.Int>)>()
Pointer<ma_uint8>
stbtt_GetGlyphBitmapSubpixel(
- Pointer<stbtt_fontinfo> info,
- double scale_x,
- double scale_y,
- double shift_x,
- double shift_y,
- int glyph,
- Pointer<Int> width,
- Pointer<Int> height,
- Pointer<Int> xoff,
- Pointer<Int> yoff,
)
Implementation
@ffi.Native<
ffi.Pointer<ffi.UnsignedChar> Function(
ffi.Pointer<stbtt_fontinfo>,
ffi.Float,
ffi.Float,
ffi.Float,
ffi.Float,
ffi.Int,
ffi.Pointer<ffi.Int>,
ffi.Pointer<ffi.Int>,
ffi.Pointer<ffi.Int>,
ffi.Pointer<ffi.Int>,
)
>()
external ffi.Pointer<ffi.UnsignedChar> stbtt_GetGlyphBitmapSubpixel(
ffi.Pointer<stbtt_fontinfo> info,
double scale_x,
double scale_y,
double shift_x,
double shift_y,
int glyph,
ffi.Pointer<ffi.Int> width,
ffi.Pointer<ffi.Int> height,
ffi.Pointer<ffi.Int> xoff,
ffi.Pointer<ffi.Int> yoff,
);