HomeSort by relevance Sort by last modified time
    Searched refs:yExtrema (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticReduceOrder.cpp 35 double yExtrema = interp_quad_coords(quad[0].y, quad[1].y, quad[2].y, tValue);
36 if (reduction[smaller].y > yExtrema) {
37 reduction[smaller].y = yExtrema;
38 } else if (reduction[larger].y < yExtrema) {
39 reduction[larger].y = yExtrema;
CubicReduceOrder.cpp 38 double yExtrema = interp_cubic_coords(&cubic[0].y, tValues[index]);
39 if (reduction[smaller].y > yExtrema) {
40 reduction[smaller].y = yExtrema;
43 if (reduction[larger].y < yExtrema) {
44 reduction[larger].y = yExtrema;

Completed in 230 milliseconds