Home
last modified time | relevance | path

Searched refs:tolC (Results 1 - 1 of 1) sorted by relevance

/third_party/skia/src/gpu/
H A DGrDistanceFieldGenFromVector.cpp138 double tolC = tolerance; in between_closed_open() local
149 tolC = tolerance / sqrt(4.0 * c * c + 1.0); in between_closed_open()
151 return b < c ? (a >= b - tolB && a < c - tolC) : in between_closed_open()
152 (a >= c - tolC && a < b - tolB); in between_closed_open()
161 double tolC = tolerance; in between_closed() local
165 tolC = tolerance / sqrt(4.0 * c * c + 1.0); in between_closed()
167 return b < c ? (a >= b - tolB && a <= c + tolC) : in between_closed()
168 (a >= c - tolC && a <= b + tolB); in between_closed()

Completed in 2 milliseconds