Example #1
0
func LogSetAllPriority(priority LogPriority) {
	_priority := (C.SDL_LogPriority)(priority)
	C.SDL_LogSetAllPriority(_priority)
}
Example #2
0
File: log.go Project: tanema/amore
// LogSetAllPriority (https://wiki.libsdl.org/SDL_LogSetAllPriority)
func LogSetAllPriority(p LogPriority) {
	C.SDL_LogSetAllPriority(p.c())
}