Home | History | Annotate | Download | only in glshared

Lines Matching defs:crossProduct

88 	const float		crossProduct	= (u.x() * v.y() - u.y() * v.x());
90 return crossProduct > 0.0f;
116 const float crossProduct = (line.x() * v.y() - line.y() * v.x());
123 if (crossProduct * crossProduct > maxPixelDistanceSquared * tcu::lengthSquared(line))
179 const float crossProduct = (u.x() * v.y() - u.y() * v.x());
181 return crossProduct / 2.0f;
1645 const deInt64 crossProduct = (edge.x() * v.y() - edge.y() * v.x());
1651 if (crossProduct < 0 && crossProduct*crossProduct > maxPixelDistanceSquared * tcu::lengthSquared(edge))
1653 if (crossProduct < 0 || crossProduct*crossProduct < maxPixelDistanceSquared * tcu::lengthSquared(edge))
1722 const deInt64 crossProduct = (edge.x() * v.y() - edge.y() * v.x());
1725 if (crossProduct < 0)