summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/x64CPUDetect.cpp
AgeCommit message (Collapse)Author
2013-08-22Fix the fix to AVX support detectionPierre Bourdon
Should be xgetbv(0) & 6 == 6, not just & 6. Thanks to tueidj for pointing this out.
2013-08-20Correctly check for AVX support in x64CPUDetectPierre Bourdon
It's not enough to check for the CPUID bit to know if AVX is supported since AVX requires OS support (new set of registers == more registers to be saved when context switching). If the OS does not support, the cpuid bit will still be set but using YMM registers will cause an illegal exception fault.
2013-04-17New license header introduced for DiscIO, AudioCommon, InputCommon, ↵Lioncash
VideoCommon, and Common projects.
2013-04-15Update the license file text (change SVN to Git) in all projects except Core ↵lioncash
since I was told a merge was happening soon. So for the sake of the merge going smoothly, I'll fix that when I remove the tab/space mismatches from the Core project. Also, some tab/space mismatches removed from VideoOGL, and some places I missed in VideoDX[number] projects. Now, the Core is literally the only project with tab/space mismatches (on a large scale).
2013-03-19Clean up more space/tab mismatches in AudioCommon, Common, and VideoCommon.lioncash
Not planning to touch Core since it's the most actively changed part of the project.
2013-02-26ARM Support without GLSLRyan Houdek