From 4716040703be1ee906439385d20475dcddad5ce3 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Mon, 25 Oct 2010 10:15:22 -0400 Subject: bug #86 : use internal:: namespace instead of ei_ prefix --- unsupported/test/openglsupport.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'unsupported/test/openglsupport.cpp') diff --git a/unsupported/test/openglsupport.cpp b/unsupported/test/openglsupport.cpp index a33e9950b..63e1b44eb 100644 --- a/unsupported/test/openglsupport.cpp +++ b/unsupported/test/openglsupport.cpp @@ -160,10 +160,10 @@ void test_openglsupport() VERIFY_MATRIX(glMultMatrix(md44), md44); // Quaternion - Quaterniond qd(AngleAxisd(ei_random(), Vector3d::Random())); + Quaterniond qd(AngleAxisd(internal::random(), Vector3d::Random())); VERIFY_MATRIX(glRotate(qd), Projective3d(qd).matrix()); - Quaternionf qf(AngleAxisf(ei_random(), Vector3f::Random())); + Quaternionf qf(AngleAxisf(internal::random(), Vector3f::Random())); VERIFY_MATRIX(glRotate(qf), Projective3f(qf).matrix()); // 3D Transform @@ -222,10 +222,10 @@ void test_openglsupport() Vector3d vd3; vd3.setRandom(); VERIFY_MATRIX(glScale(vd3), Projective3d(Scaling(vd3)).matrix()); - UniformScaling usf(ei_random()); + UniformScaling usf(internal::random()); VERIFY_MATRIX(glScale(usf), Projective3f(usf).matrix()); - UniformScaling usd(ei_random()); + UniformScaling usd(internal::random()); VERIFY_MATRIX(glScale(usd), Projective3d(usd).matrix()); } -- cgit v1.2.3