Skip to content

Commit

Permalink
NEON buildfix
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Nov 28, 2023
1 parent 8ad0ef6 commit 737ec3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GPU/Math3D.h
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,7 @@ inline float32x4_t Norm3ByMatrix43Internal(float32x4_t vec, const float m[16]) {
float32x4_t col2 = vld1q_f32(m + 6);
float32x4_t sum = vaddq_f32(
vaddq_f32(vmulq_lane_f32(col0, vget_low_f32(vec), 0), vmulq_lane_f32(col1, vget_low_f32(vec), 1)),
vmulq_lane_f32(col2, vget_high_f32(vec), 2));
vmulq_lane_f32(col2, vget_high_f32(vec), 0));
return sum;
}
#endif
Expand Down

0 comments on commit 737ec3e

Please sign in to comment.