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

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

作者:gnanderso    项目:Go-SD   
// Sets the icon for the display window.
func WM_SetIcon(icon *Surface, mask *uint8) {
	C.SDL_WM_SetIcon((*C.SDL_Surface)(cast(icon)), (*C.Uint8)(mask))
}

作者:kearsle    项目:Go-SD   
// Sets the icon for the display window.
func WM_SetIcon(icon *Surface, mask *uint8) {
	GlobalMutex.Lock()
	C.SDL_WM_SetIcon(icon.cSurface, (*C.Uint8)(mask))
	GlobalMutex.Unlock()
}

作者:beora    项目:fung   
// Sets the icon for the display window.
// This function must be called before the first call to SDL_SetVideoMode().
// It takes an icon surface, and a mask in MSB format.
// If 'mask' is NULL, the entire icon surface will be used as the icon.
// TODO: support mask
func wm_SetIcon(icon *C.SDL_Surface) {
	C.SDL_WM_SetIcon(icon, nil)
}


问题


面经


文章

微信
公众号

扫码关注公众号