mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-21 04:15:36 +00:00
* BugFix: Remove unused 3DNow! extensions and broken SSE extensions.
This commit is contained in:
parent
27fd15de83
commit
c687c0d23a
7 changed files with 11 additions and 448 deletions
|
|
@ -68,18 +68,17 @@ enum ProcessorProperties
|
|||
CPU_PROP_C = (1<<0), ///< We should use C fallback math functions.
|
||||
CPU_PROP_FPU = (1<<1), ///< Has an FPU. (It better!)
|
||||
CPU_PROP_MMX = (1<<2), ///< Supports MMX instruction set extension.
|
||||
CPU_PROP_3DNOW = (1<<3), ///< Supports AMD 3dNow! instruction set extension.
|
||||
CPU_PROP_SSE = (1<<4), ///< Supports SSE instruction set extension.
|
||||
CPU_PROP_SSE2 = (1<<5), ///< Supports SSE2 instruction set extension.
|
||||
CPU_PROP_SSE3 = (1<<6), ///< Supports SSE3 instruction set extension.
|
||||
CPU_PROP_SSE3ex = (1<<7), ///< Supports Supplemental SSE3 instruction set
|
||||
CPU_PROP_SSE4_1 = (1<<8), ///< Supports SSE4_1 instruction set extension.
|
||||
CPU_PROP_SSE4_2 = (1<<9), ///< Supports SSE4_2 instruction set extension.
|
||||
CPU_PROP_AVX = (1<<10), ///< Supports AVX256 instruction set extension.
|
||||
CPU_PROP_MP = (1<<11), ///< This is a multi-processor system.
|
||||
CPU_PROP_LE = (1<<12), ///< This processor is LITTLE ENDIAN.
|
||||
CPU_PROP_64bit = (1<<13), ///< This processor is 64-bit capable
|
||||
CPU_PROP_NEON = (1<<14), ///< Supports the Arm Neon instruction set extension.
|
||||
CPU_PROP_SSE = (1<<3), ///< Supports SSE instruction set extension.
|
||||
CPU_PROP_SSE2 = (1<<4), ///< Supports SSE2 instruction set extension.
|
||||
CPU_PROP_SSE3 = (1<<5), ///< Supports SSE3 instruction set extension.
|
||||
CPU_PROP_SSE3ex = (1<<6), ///< Supports Supplemental SSE3 instruction set
|
||||
CPU_PROP_SSE4_1 = (1<<7), ///< Supports SSE4_1 instruction set extension.
|
||||
CPU_PROP_SSE4_2 = (1<<8), ///< Supports SSE4_2 instruction set extension.
|
||||
CPU_PROP_AVX = (1<<9), ///< Supports AVX256 instruction set extension.
|
||||
CPU_PROP_MP = (1<<10), ///< This is a multi-processor system.
|
||||
CPU_PROP_LE = (1<<11), ///< This processor is LITTLE ENDIAN.
|
||||
CPU_PROP_64bit = (1<<12), ///< This processor is 64-bit capable
|
||||
CPU_PROP_NEON = (1<<13), ///< Supports the Arm Neon instruction set extension.
|
||||
};
|
||||
|
||||
/// Processor info manager.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue