FontGetNominalGlyphsFunc


Description:

[ CCode ( cname = "hb_font_get_nominal_glyphs_func_t" , instance_pos = 7.9 ) ]
public delegate uint FontGetNominalGlyphsFunc (Font font, void* font_data, uint count, Codepoint first_unicode, uint unicode_stride, Codepoint first_glyph, uint glyph_stride)

A virtual method for the FontFuncs of an Font object.

This method should retrieve the nominal glyph IDs for a sequence of Unicode code points. Glyph IDs must be returned in a Codepoint output parameter.

Parameters:

font

Font to work upon

font_data

font user data pointer

count

number of code points to query

first_unicode

The first Unicode code point to query

unicode_stride

The stride between successive code points

first_glyph

The first glyph ID retrieved

glyph_stride

The stride between successive glyph IDs

user_data

User data pointer passed by the caller

Returns:

the number of code points processed


Namespace: HarfBuzz