コード例 #1
0
ファイル: sdl_ttf.go プロジェクト: veandco/go-sdl2
// 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
}
コード例 #2
0
ファイル: ttf.go プロジェクト: willemvds/sdl
func (f *Font) GetKerning() int {
	return int(C.TTF_GetFontKerning(f.c))
}