|
From: Jerome F. <kin...@us...> - 2009-06-11 14:24:27
|
Update of /cvsroot/munt/mt32emu/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv28084/src Modified Files: synth.cpp Log Message: - Removed #ifdef-ed out SSE/3DNow detection. Index: synth.cpp =================================================================== RCS file: /cvsroot/munt/mt32emu/src/synth.cpp,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** synth.cpp 11 Jun 2009 13:03:39 -0000 1.63 --- synth.cpp 11 Jun 2009 14:24:23 -0000 1.64 *************** *** 531,554 **** iirFilter = &iir_filter_normal; - #ifdef MT32EMU_HAVE_X86 - bool availableSSE = false; //DetectSIMD(); - bool available3DNow = false; //Detect3DNow(); - - if (availableSSE) - report(ReportType_availableSSE, NULL); - if (available3DNow) - report(ReportType_available3DNow, NULL); - - if (available3DNow) { - printDebug("Detected and using SIMD (AMD 3DNow) extensions"); - iirFilter = &iir_filter_3dnow; - report(ReportType_using3DNow, NULL); - } else if (availableSSE) { - printDebug("Detected and using SIMD (Intel SSE) extensions"); - iirFilter = &iir_filter_sse; - report(ReportType_usingSSE, NULL); - } - #endif - isOpen = true; isEnabled = false; --- 531,534 ---- |