Golang C.TTF_FontLineSkip类(方法)实例源码

下面列出了Golang C.TTF_FontLineSkip 类(方法)源码代码实例,从而了解它的用法。

作者:veandc    项目:go-sdl   
// LineSkip (https://www.libsdl.org/projects/SDL_ttf/docs/SDL_ttf_32.html#SEC32)
func (f *Font) LineSkip() int { return int(C.TTF_FontLineSkip(f.f)) }

作者:beora    项目:fung   
// Get the recommended spacing between lines of text for this font
func TTFFontLineSkip(font *C.TTF_Font) int {
	return int(C.TTF_FontLineSkip(font))
}

作者:Zwobo    项目:Go-SD   
// Returns the recommended pixel height of a rendered line of text.
func (f *Font) LineSkip() int {
	f.mutex.RLock()
	result := int(C.TTF_FontLineSkip(f.cfont))
	f.mutex.RUnlock()
	return result
}

作者:kri    项目:Go-SDL   
// Returns the recommended pixel height of a rendered line of text.
func (f *Font) LineSkip() int {
	result := int(C.TTF_FontLineSkip(f.cfont))
	return result
}


问题


面经


文章

微信
公众号

扫码关注公众号