Example #1
0
/**
 *  This function returns true if the CPU has 3DNow! features.
 */
func Has3DNow() bool {
	return int(C.SDL_Has3DNow()) != 0
}
Example #2
0
File: sdl.go Project: beoran/fungo
// This function returns true if the CPU has 3DNow features
func Has3DNow() bool {
	return i2b(int(C.SDL_Has3DNow()))
}
Example #3
0
func Has3DNow() bool {
	return C.SDL_Has3DNow() > 0
}
Example #4
0
func Has3DNow() bool {
	return C.SDL_Has3DNow() == C.SDL_TRUE
}