OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tMin
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticImplicit.cpp
126
static bool addIntercept(const Quadratic& q1, const Quadratic& q2, double
tMin
, double tMax,
128
double tMid = (
tMin
+ tMax) / 2;
185
double
tMin
, tMax;
187
tMin
= tMax = tsFound[0];
190
tMin
= tsFound[0];
197
tMin
= t2s;
206
if (
tMin
!= tMax || tCount > 2) {
207
dxy2 = dxdy_at_t(q2,
tMin
);
220
if (addIntercept(q1, q2,
tMin
, tMax, i, subDivide)) {
224
return isLinearInner(q2,
tMin
, tMax, q1, t1s, t1e, i, subDivide)
[
all
...]
/external/chromium_org/third_party/skia/src/pathops/
SkDQuadIntersection.cpp
119
static bool add_intercept(const SkDQuad& q1, const SkDQuad& q2, double
tMin
, double tMax,
121
double tMid = (
tMin
+ tMax) / 2;
179
double
tMin
, tMax;
181
tMin
= tMax = tsFound[0];
185
tMin
= tsFound[0];
191
tMin
= t2s;
200
if (
tMin
!= tMax || tCount > 2) {
201
dxy2 = q2.dxdyAtT(
tMin
);
213
if (add_intercept(q1, q2,
tMin
, tMax, i, subDivide)) {
217
return is_linear_inner(q2,
tMin
, tMax, q1, t1s, t1e, i, subDivide)
[
all
...]
/external/chromium_org/third_party/skia/tests/
PathOpsAngleIdeas.cpp
35
double
tMin
;
246
result->
tMin
= SkTMin(t1, t2);
293
upperRange->
tMin
= 0;
294
lowerRange->
tMin
= 1;
311
SkDebugf("u bestCCW=%d ccw=%d bestMin=%1.9g:%1.9g r=%1.9g
tMin
=%1.9g\n",
312
bestCCW, tRange.ccw, lowerRange->
tMin
, upperRange->
tMin
, r,
313
tRange.
tMin
);
316
if (tRange.
tMin
< upperRange->
tMin
) {
[
all
...]
/external/deqp/modules/gles2/accuracy/
es2aTextureFilteringTests.cpp
275
float
tMin
= -0.2f;
279
computeQuadTexCoord2D(texCoord, tcu::Vec2(sMin,
tMin
), tcu::Vec2(sMin+sRange,
tMin
+tRange));
/external/deqp/modules/gles3/accuracy/
es3aTextureFilteringTests.cpp
266
float
tMin
= -0.2f;
270
computeQuadTexCoord2D(texCoord, tcu::Vec2(sMin,
tMin
), tcu::Vec2(sMin+sRange,
tMin
+tRange));
Completed in 126 milliseconds