Preprocessor purge round 13: X86
This commit is contained in:
parent
b16cbf86fc
commit
29d4d4e91c
@ -326,7 +326,7 @@ conf_data.set('LIN', host_platform == 'linux')
|
||||
conf_data.set('AND', host_platform == 'android')
|
||||
conf_data.set('WIN', host_platform == 'windows')
|
||||
conf_data.set('MACOSX', host_platform == 'darwin')
|
||||
conf_data.set('X86', is_x86)
|
||||
conf_data.set('X86', is_x86 ? 'true' : 'false')
|
||||
conf_data.set('BETA', is_beta ? 'true' : 'false')
|
||||
conf_data.set('INSTALL_CHECK', get_option('install_check') ? 'true' : 'false')
|
||||
conf_data.set('IGNORE_UPDATES', get_option('ignore_updates') ? 'true' : 'false')
|
||||
|
@ -10,8 +10,8 @@
|
||||
#mesondefine AND
|
||||
#mesondefine WIN
|
||||
#mesondefine MACOSX
|
||||
#mesondefine X86
|
||||
|
||||
constexpr bool X86 = @X86@;
|
||||
constexpr bool BETA = @BETA@;
|
||||
constexpr bool SNAPSHOT = @SNAPSHOT@;
|
||||
constexpr bool MOD = @MOD@;
|
||||
|
@ -11,11 +11,6 @@
|
||||
#endif
|
||||
#include <SDL.h>
|
||||
|
||||
#ifdef X86
|
||||
# include <xmmintrin.h>
|
||||
# include <pmmintrin.h>
|
||||
#endif
|
||||
|
||||
#include <iostream>
|
||||
#if defined(LIN)
|
||||
# include "icon_exe.png.h"
|
||||
@ -37,6 +32,7 @@
|
||||
#include <SDL.h>
|
||||
|
||||
#include "Format.h"
|
||||
#include "X86KillDenormals.h"
|
||||
#include "Misc.h"
|
||||
|
||||
#include "client/Client.h"
|
||||
@ -833,10 +829,10 @@ int main(int argc, char * argv[])
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef X86
|
||||
_MM_SET_FLUSH_ZERO_MODE(_MM_FLUSH_ZERO_ON);
|
||||
_MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON);
|
||||
#endif
|
||||
if constexpr (X86)
|
||||
{
|
||||
X86KillDenormals();
|
||||
}
|
||||
|
||||
GameController * gameController = NULL;
|
||||
|
||||
|
9
src/X86KillDenormals.cpp
Normal file
9
src/X86KillDenormals.cpp
Normal file
@ -0,0 +1,9 @@
|
||||
#include "X86KillDenormals.h"
|
||||
#include <xmmintrin.h>
|
||||
#include <pmmintrin.h>
|
||||
|
||||
void X86KillDenormals()
|
||||
{
|
||||
_MM_SET_FLUSH_ZERO_MODE(_MM_FLUSH_ZERO_ON);
|
||||
_MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON);
|
||||
}
|
3
src/X86KillDenormals.h
Normal file
3
src/X86KillDenormals.h
Normal file
@ -0,0 +1,3 @@
|
||||
#pragma once
|
||||
|
||||
void X86KillDenormals();
|
@ -9,6 +9,9 @@ powder_files = files(
|
||||
'lua/TPTScriptInterface.cpp',
|
||||
'lua/TPTSTypes.cpp',
|
||||
)
|
||||
if is_x86
|
||||
powder_files += files('X86KillDenormals.cpp')
|
||||
endif
|
||||
|
||||
render_files = files(
|
||||
'PowderToyRenderer.cpp',
|
||||
|
Loading…
Reference in New Issue
Block a user