From Ben Discoe, build fix for float version of Matrix.

This commit is contained in:
Robert Osfield 2004-08-11 08:25:14 +00:00
parent e871adae1a
commit 821b0991d9

View File

@ -211,8 +211,8 @@ void CullVisitor::popProjectionMatrix()
// so it doesn't cull them out.
osg::Matrix& projection = *_projectionStack.back();
double tmp_znear = _computed_znear;
double tmp_zfar = _computed_zfar;
value_type tmp_znear = _computed_znear;
value_type tmp_zfar = _computed_zfar;
clampProjectionMatrix(projection, tmp_znear, tmp_zfar);
}