Example #1
0
func HasSSE3() bool {
	return C.SDL_HasSSE3() > 0
}
Example #2
0
/**
 *  This function returns true if the CPU has SSE3 features.
 */
func HasSSE3() bool {
	return int(C.SDL_HasSSE3()) != 0
}
Example #3
0
func HasSSE3() bool {
	return C.SDL_HasSSE3() == C.SDL_TRUE
}