Home | History | Annotate | Download | only in glshared

Lines Matching full:maxpixeldistance

109 	const float maxPixelDistance		= 1.414f;
119 // |(line x v) / |line|| > maxPixelDistance
120 // ==> (line x v)^2 / |line|^2 > maxPixelDistance^2
121 // ==> (line x v)^2 > maxPixelDistance^2 * |line|^2
129 // distance from line endpoint 1 to pixel is less than line length + maxPixelDistance
130 const float maxDistance = tcu::length(p1 - p0) + maxPixelDistance;
2107 // (edge x v) / |edge| > maxPixelDistance
2108 // ==> (edge x v)^2 / edge^2 > maxPixelDistance^2 | edge x v > 0
2109 // ==> (edge x v)^2 > maxPixelDistance^2 * edge^2