예제 #1
0
func HasSSE42() bool {
	return C.SDL_HasSSE42() > 0
}
예제 #2
0
파일: cpuinfo.go 프로젝트: krig/Go-SDL2
/**
 *  This function returns true if the CPU has SSE4.2 features.
 */
func HasSSE42() bool {
	return int(C.SDL_HasSSE42()) != 0
}
예제 #3
0
파일: cpuinfo.go 프로젝트: willemvds/sdl
func HasSSE42() bool {
	return C.SDL_HasSSE42() == C.SDL_TRUE
}