OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:maxpixeldistance
(Results
1 - 1
of
1
) sorted by null
/external/deqp/modules/glshared/
glsRasterizationTestUtil.cpp
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
;
[
all
...]
Completed in 1230 milliseconds