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

  /external/skia/include/effects/
SkBlurMaskFilter.h 73 // rectXs, rectYs - the x & y coordinates of the covering geometry lattice
74 // texXs, texYs - the texture coordinate at each point in rectXs & rectYs
84 SkScalar rectYs[kMaxDivisions],
  /external/skqp/include/effects/
SkBlurMaskFilter.h 73 // rectXs, rectYs - the x & y coordinates of the covering geometry lattice
74 // texXs, texYs - the texture coordinate at each point in rectXs & rectYs
84 SkScalar rectYs[kMaxDivisions],
  /external/skia/tests/
BlurTest.cpp 525 SkScalar rectXs[SkBlurMaskFilter::kMaxDivisions], rectYs[SkBlurMaskFilter::kMaxDivisions];
540 rectXs, rectYs, texXs, texYs,
554 rectXs, rectYs, texXs, texYs,
575 rectXs, rectYs, texXs, texYs,
594 // The rectXs & rectYs should be { 1, 29, 91, 119 }. Add two more points around each.
621 rectXs, rectYs, texXs, texYs,
634 SkRect cell = SkRect::MakeLTRB(rectXs[x], rectYs[y],
635 rectXs[x+1], rectYs[y+1]);
  /external/skqp/tests/
BlurTest.cpp 524 SkScalar rectXs[SkBlurMaskFilter::kMaxDivisions], rectYs[SkBlurMaskFilter::kMaxDivisions];
539 rectXs, rectYs, texXs, texYs,
553 rectXs, rectYs, texXs, texYs,
574 rectXs, rectYs, texXs, texYs,
593 // The rectXs & rectYs should be { 1, 29, 91, 119 }. Add two more points around each.
620 rectXs, rectYs, texXs, texYs,
633 SkRect cell = SkRect::MakeLTRB(rectXs[x], rectYs[y],
634 rectXs[x+1], rectYs[y+1]);
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 204 SkScalar rectYs[kMaxDivisions],
250 rectYs[0] = srcProxyRect.fTop;
251 rectYs[1] = srcProxyRect.fTop + 2*srcBlurRadius + srcTop;
252 rectYs[2] = srcProxyRect.fBottom - 2*srcBlurRadius - srcBot;
253 rectYs[3] = srcProxyRect.fBottom;
272 *skipMask = insert_into_arrays(rectYs, texYs, temp.fTop, temp.fBottom,
    [all...]
  /external/skqp/src/effects/
SkBlurMaskFilter.cpp 203 SkScalar rectYs[kMaxDivisions],
249 rectYs[0] = srcProxyRect.fTop;
250 rectYs[1] = srcProxyRect.fTop + 2*srcBlurRadius + srcTop;
251 rectYs[2] = srcProxyRect.fBottom - 2*srcBlurRadius - srcBot;
252 rectYs[3] = srcProxyRect.fBottom;
271 *skipMask = insert_into_arrays(rectYs, texYs, temp.fTop, temp.fBottom,
    [all...]

Completed in 341 milliseconds