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

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

作者:veandc    项目:go-sdl   
// Faces (https://www.libsdl.org/projects/SDL_ttf/docs/SDL_ttf_33.html#SEC33)
func (f *Font) Faces() int { return int(C.TTF_FontFaces(f.f)) }

作者:Zwobo    项目:Go-SD   
// Returns the number of available faces (sub-fonts) in the font.
func (f *Font) Faces() int {
	f.mutex.RLock()
	result := int(C.TTF_FontFaces(f.cfont))
	f.mutex.RUnlock()
	return result
}

作者:willemvd    项目:sd   
func (f *Font) Faces() int64 {
	return int64(C.TTF_FontFaces(f.c))
}

作者:beora    项目:fung   
// Get the number of faces of the font
func TTFFontFaces(font *C.TTF_Font) int32 {
	return int32(C.TTF_FontFaces(font))
}

作者:kri    项目:Go-SDL   
// Returns the number of available faces (sub-fonts) in the font.
func (f *Font) Faces() int {
	result := int(C.TTF_FontFaces(f.cfont))
	return result
}


问题


面经


文章

微信
公众号

扫码关注公众号