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