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