diff test/testcpuinfo.c @ 740:e70f80e98f60

Actually hook the cpuinfo module into the library. :)
author Sam Lantinga <slouken@libsdl.org>
date Tue, 18 Nov 2003 02:16:57 +0000
parents
children 8ac3f46f9d09
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/testcpuinfo.c	Tue Nov 18 02:16:57 2003 +0000
@@ -0,0 +1,15 @@
+
+/* Test program to check SDL's CPU feature detection */
+
+#include <stdio.h>
+
+#include "SDL.h"
+#include "SDL_cpuinfo.h"
+
+int main(int argc, char *argv[])
+{
+	printf("MMX %s\n", SDL_HasMMX() ? "detected" : "not detected");
+	printf("3DNow %s\n", SDL_Has3DNow() ? "detected" : "not detected");
+	printf("SSE %s\n", SDL_HasSSE() ? "detected" : "not detected");
+	return(0);
+}