mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 16:08:39 -05:00
Removed explicit SSE2 code in GLSpectrum. Fixes issue #192
This commit is contained in:
parent
c579d66b59
commit
d79e8a4495
@ -15,7 +15,7 @@
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
||||
///////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifdef USE_SSE2
|
||||
#if 0 //def USE_SSE2
|
||||
#include <emmintrin.h>
|
||||
#endif
|
||||
|
||||
@ -416,7 +416,7 @@ void GLSpectrum::updateHistogram(const std::vector<Real>& spectrum)
|
||||
|
||||
m_currentSpectrum = &spectrum; // Store spectrum for current spectrum line display
|
||||
|
||||
#ifdef USE_SSE2
|
||||
#if 0 //def USE_SSE2
|
||||
if(m_decay >= 0) { // normal
|
||||
const __m128 refl = {m_referenceLevel, m_referenceLevel, m_referenceLevel, m_referenceLevel};
|
||||
const __m128 power = {m_powerRange, m_powerRange, m_powerRange, m_powerRange};
|
||||
|
Loading…
Reference in New Issue
Block a user