From 98d188f5de967eb62d249afed212692a56465faf Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sun, 30 Oct 2016 21:01:46 +0100 Subject: [PATCH] Added call to SDL_HasAVX2() in platform test program. --- test/testplatform.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/testplatform.c b/test/testplatform.c index 14acac4b11087..98c89403762bd 100644 --- a/test/testplatform.c +++ b/test/testplatform.c @@ -145,6 +145,7 @@ TestCPUInfo(SDL_bool verbose) SDL_Log("SSE4.1 %s\n", SDL_HasSSE41()? "detected" : "not detected"); SDL_Log("SSE4.2 %s\n", SDL_HasSSE42()? "detected" : "not detected"); SDL_Log("AVX %s\n", SDL_HasAVX()? "detected" : "not detected"); + SDL_Log("AVX2 %s\n", SDL_HasAVX2()? "detected" : "not detected"); SDL_Log("System RAM %d MB\n", SDL_GetSystemRAM()); } return (0);