/** * This function returns true if the CPU has 3DNow! features. */ func Has3DNow() bool { return int(C.SDL_Has3DNow()) != 0 }
// This function returns true if the CPU has 3DNow features func Has3DNow() bool { return i2b(int(C.SDL_Has3DNow())) }
func Has3DNow() bool { return C.SDL_Has3DNow() > 0 }
func Has3DNow() bool { return C.SDL_Has3DNow() == C.SDL_TRUE }