Example #1
0
/**
 *  This function returns true if the CPU has SSE features.
 */
func HasSSE() bool {
	return int(C.SDL_HasSSE()) != 0
}
Example #2
0
File: sdl.go Project: beoran/fungo
// This function returns true if the CPU has SSE features
func HasSSE() bool {
	return i2b(int(C.SDL_HasSSE()))
}
Example #3
0
func HasSSE() bool {
	return C.SDL_HasSSE() > 0
}
Example #4
0
func HasSSE() bool {
	return C.SDL_HasSSE() == C.SDL_TRUE
}