Skip to content

Commit

Permalink
Added call to SDL_HasAVX2() in platform test program.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Oct 30, 2016
1 parent 6f1f77b commit 98d188f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/testplatform.c
Expand Up @@ -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);
Expand Down

0 comments on commit 98d188f

Please sign in to comment.