Пример #1
0
/**
 *  This function returns true if the CPU has 3DNow! features.
 */
func Has3DNow() bool {
	return int(C.SDL_Has3DNow()) != 0
}
Пример #2
0
// This function returns true if the CPU has 3DNow features
func Has3DNow() bool {
	return i2b(int(C.SDL_Has3DNow()))
}
Пример #3
0
func Has3DNow() bool {
	return C.SDL_Has3DNow() > 0
}
Пример #4
0
func Has3DNow() bool {
	return C.SDL_Has3DNow() == C.SDL_TRUE
}