stbtt_GetGlyphShape function

  1. @Native<Int Function(Pointer<stbtt_fontinfo>, Int, Pointer<Pointer<stbtt_vertex>>)>(ffi.Pointer<stbtt_fontinfo>, ffi.Int, ffi.Pointer<ffi.Pointer<stbtt_vertex>>)>()
int stbtt_GetGlyphShape(
  1. Pointer<stbtt_fontinfo> info,
  2. int glyph_index,
  3. Pointer<Pointer<stbtt_vertex>> vertices
)

Implementation

@ffi.Native<
  ffi.Int Function(
    ffi.Pointer<stbtt_fontinfo>,
    ffi.Int,
    ffi.Pointer<ffi.Pointer<stbtt_vertex>>,
  )
>()
external int stbtt_GetGlyphShape(
  ffi.Pointer<stbtt_fontinfo> info,
  int glyph_index,
  ffi.Pointer<ffi.Pointer<stbtt_vertex>> vertices,
);