comparison include/SDL_cpuinfo.h @ 778:8ac3f46f9d09

Date: Tue, 6 Jan 2004 12:42:19 +0100 From: Max Horn Subject: SDL_HasAltiVec; BUGS file the attached patch adds SDL_HasAltiVec to SDL CVS. Note that at this point, this only works on MacOSX (and maybe darwin). I don't know how to properly add a test for e.g. Linux/PPC at this point. I found an email which might help in doing so: http://zebra.fh-weingarten.de/~maxi/html/mplayer-dev-eng/2003-01msg00783.html However, since I have no way to test on a non-OSX PowerPC system, I am not comfortable blindly adding such code... I just hope that if somebody from the Linux/PPC (or FreeBSD/PPC, or whatever) community notices this, they'll jump up and provide a patch for us ;-)
author Sam Lantinga <slouken@libsdl.org>
date Tue, 06 Jan 2004 17:18:38 +0000
parents b8d311d90021
children ca06a994f03c
comparison
equal deleted inserted replaced
777:6f4fe7f2063b 778:8ac3f46f9d09
51 51
52 /* This function returns true if the CPU has SSE features 52 /* This function returns true if the CPU has SSE features
53 */ 53 */
54 extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE(); 54 extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE();
55 55
56 /* This function returns true if the CPU has AltiVec features
57 */
58 extern DECLSPEC SDL_bool SDLCALL SDL_HasAltiVec();
59
56 /* Ends C function definitions when using C++ */ 60 /* Ends C function definitions when using C++ */
57 #ifdef __cplusplus 61 #ifdef __cplusplus
58 } 62 }
59 #endif 63 #endif
60 #include "close_code.h" 64 #include "close_code.h"