Exemplo n.º 1
0
Arquivo: video.go Projeto: salihdb/sdl
// IsScreenSaverEnabled returns true if the screensaver is currently enabled.
func IsScreenSaverEnabled() bool {
	if C.SDL_IsScreenSaverEnabled() == C.SDL_TRUE {
		return true
	}
	return false

}
Exemplo n.º 2
0
func IsScreenSaverEnabled() bool {
	return int(C.SDL_IsScreenSaverEnabled()) != 0
}
Exemplo n.º 3
0
func IsScreenSaverEnabled() bool {
	return C.SDL_IsScreenSaverEnabled() == C.SDL_TRUE
}