ecere/gfx3D: Made FastInvSqrt public
[sdk] / ecere / src / gfx / 3D / Vector3D.ec
index 2cf29f7..a783243 100644 (file)
@@ -151,7 +151,7 @@ public struct Vector3D
    }
 };
 
-inline float FastInvSqrt(float x)
+public inline float FastInvSqrt(float x)
 {
   union { float f; uint u; } i;
   float halfX = x / 2;