We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e9d79c commit 3d01035Copy full SHA for 3d01035
2 files changed
Source/astcenc_mathlib.h
@@ -418,7 +418,7 @@ uint64_t rand(uint64_t state[2]);
418
/* ============================================================================
419
Softfloat library with fp32 and fp16 conversion functionality.
420
============================================================================ */
421
-#if ASTCENC_F16C == 0
+#if (ASTCENC_F16C == 0) && (ASTCENC_NEON == 0)
422
/* narrowing float->float conversions */
423
uint16_t float_to_sf16(float val);
424
float sf16_to_float(uint16_t val);
Source/astcenc_mathlib_softfloat.cpp
@@ -18,7 +18,7 @@
18
/**
19
* @brief Soft-float library for IEEE-754.
20
*/
21
22
23
#include "astcenc_mathlib.h"
24
0 commit comments