Ejemplo n.º 1
0
// GetKerning (https://www.libsdl.org/projects/SDL_ttf/docs/SDL_ttf_27.html#SEC27)
func (f *Font) GetKerning() bool {
	return int(C.TTF_GetFontKerning(f.f)) == 1
}
Ejemplo n.º 2
0
Archivo: ttf.go Proyecto: willemvds/sdl
func (f *Font) GetKerning() int {
	return int(C.TTF_GetFontKerning(f.c))
}