From 24acf3203589cea89295e4e946b3eb0834498120 Mon Sep 17 00:00:00 2001 From: Alec Miller Date: Tue, 23 Apr 2024 09:26:18 -0700 Subject: [PATCH] kram - fix astc vecmath change --- libkram/astc-encoder/astcenc_vecmathlib_sse_4.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libkram/astc-encoder/astcenc_vecmathlib_sse_4.h b/libkram/astc-encoder/astcenc_vecmathlib_sse_4.h index cbc165e..aaf5dcc 100755 --- a/libkram/astc-encoder/astcenc_vecmathlib_sse_4.h +++ b/libkram/astc-encoder/astcenc_vecmathlib_sse_4.h @@ -966,7 +966,7 @@ float float16_to_float(uint16_t a); * some bit hackery based on knowledge they are IEEE 754 layout, and then * convert them back again. This is the first half of that flip. */ -vint4 float_as_int(vfloat4 a) +ASTCENC_SIMD_INLINE vint4 float_as_int(vfloat4 a) { return vint4(_mm_castps_si128(a.m)); }