Lines Matching defs:nearval
862 * \param nearval distance to the near clipping plane.
872 GLfloat nearval, GLfloat farval )
877 x = (2.0F*nearval) / (right-left);
878 y = (2.0F*nearval) / (top-bottom);
881 c = -(farval+nearval) / ( farval-nearval);
882 d = -(2.0F*farval*nearval) / (farval-nearval); /* error? */
902 * \param nearval distance to the near clipping plane.
912 float nearval, float farval)
927 M(2,2) = -2.0F / (farval-nearval);
928 M(2,3) = -(farval+nearval) / (farval-nearval);
945 * \param nearval distance to the near clipping plane.
955 GLfloat nearval, GLfloat farval )
959 _math_float_ortho(m, left, right, bottom, top, nearval, farval);