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