Browse Source

Yet another fix as this is no longer covered by unit tests

Amaury Le Leyzour 6 years ago
parent
commit
9da0c80e26
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/detail/func_geometric_simd.inl

+ 1 - 1
glm/detail/func_geometric_simd.inl

@@ -155,7 +155,7 @@ namespace detail
 
 
 			float32x4_t vd = vrsqrteq_f32(p);
 			float32x4_t vd = vrsqrteq_f32(p);
 			vec<4, float, Q> Result;
 			vec<4, float, Q> Result;
-			Result.data = vmulq_f32(v, vd);
+			Result.data = vmulq_f32(v.data, vd);
 			return Result;
 			return Result;
 		}
 		}
 	};
 	};