Skip to content

Commit 1369d48

Browse files
committed
Fix missing reference
1 parent b009be6 commit 1369d48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Runtime/mathx.interpolation.common.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ public static partial class mathx
295295
}
296296
public static float2 smax_exp2(this float2 t, float2 a, float2 b) => f2(t.x.smax_exp(a.x, b.x), t.y.smax_exp(a.y, b.y));
297297

298-
public static float2 smax_expOP(this float2 t, float2 a, float2 b) => FunctionPointers.p_smax_exp.RunPerAxisWithParam(a, b, t);
298+
// public static float2 smax_expOP(this float2 t, float2 a, float2 b) => FunctionPointers.p_smax_exp.RunPerAxisWithParam(a, b, t);
299299

300300
public static float3 smax_exp(this float3 t, float3 a, float3 b) => f3(t.x.smax_exp(a.x, b.x), t.y.smax_exp(a.y, b.y), t.z.smax_exp(a.z, b.z));
301301
public static float4 smax_exp(this float4 t, float4 a, float4 b) => f4(t.x.smax_exp(a.x, b.x), t.y.smax_exp(a.y, b.y), t.z.smax_exp(a.z, b.z), t.w.smax_exp(a.w, b.w));

0 commit comments

Comments
 (0)