HomeSort by relevance Sort by last modified time
    Searched refs:rectXs (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
83 SkScalar rectXs[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
83 SkScalar rectXs[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 203 SkScalar rectXs[kMaxDivisions],
245 rectXs[0] = srcProxyRect.fLeft;
246 rectXs[1] = srcProxyRect.fLeft + 2*srcBlurRadius + srcLeft;
247 rectXs[2] = srcProxyRect.fRight - 2*srcBlurRadius - srcRight;
248 rectXs[3] = srcProxyRect.fRight;
271 *skipMask = insert_into_arrays(rectXs, texXs, temp.fLeft, temp.fRight, numXs, 0x1, 1);
    [all...]
  /external/skqp/src/effects/
SkBlurMaskFilter.cpp 202 SkScalar rectXs[kMaxDivisions],
244 rectXs[0] = srcProxyRect.fLeft;
245 rectXs[1] = srcProxyRect.fLeft + 2*srcBlurRadius + srcLeft;
246 rectXs[2] = srcProxyRect.fRight - 2*srcBlurRadius - srcRight;
247 rectXs[3] = srcProxyRect.fRight;
270 *skipMask = insert_into_arrays(rectXs, texXs, temp.fLeft, temp.fRight, numXs, 0x1, 1);
    [all...]

Completed in 637 milliseconds