view test/testcpuinfo.c @ 776:18922ae3ee07

Added support for /dev/joy* on Free/Net/OpenBSD (thanks Christian!)
author Sam Lantinga <slouken@libsdl.org>
date Tue, 06 Jan 2004 04:07:12 +0000
parents e70f80e98f60
children 8ac3f46f9d09
line wrap: on
line source


/* 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);
}