-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Build flags and config details | ||
- `VECTORMATH_ENABLE_CLANG_EXT`: | ||
- Compiler options: `-DVECTORMATH_ENABLE_CLANG_EXT` | ||
- Use clang vector extensions, only work with clang compiler. | ||
- Clang vector extensions support swizzle syntaxes. | ||
|
||
- `VECTORMATH_SIMD_ENABLE`: | ||
- Compiler options: `-DVECTORMATH_SIMD_ENABLE` | ||
- Prefer to use SIMD if available, autoconfig to use SSE or NEON based on target platform. | ||
|
||
- `VECTORMATH_USE_EXACT_PRECISION`: | ||
- Compiler options: `-DVECTORMATH_USE_EXACT_PRECISION` | ||
- Prefer good precision over fast math (currently use idSoftware FastInvSqrt) | ||
- Planning to do some fast trigonometric with simd instructions |