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