Home | History | Annotate | Download | only in core

Lines Matching refs:devRect

100         SkRect devRect;
101 this->getTotalMatrix().mapRectScaleTranslate(&devRect, *rect);
102 if (!devRect.contains(bounds)) {
1556 static inline bool is_nan_or_clipped(const Sk4f& devRect, const Sk4f& devClip) {
1558 __m128 lLtT = _mm_unpacklo_ps(devRect.fVec, devClip.fVec);
1559 __m128 RrBb = _mm_unpackhi_ps(devClip.fVec, devRect.fVec);
1563 float32x4_t lLtT = vzipq_f32(devRect.fVec, devClip.fVec).val[0];
1564 float32x4_t RrBb = vzipq_f32(devClip.fVec, devRect.fVec).val[1];
1570 devRect.store(&devRectAsRect.fLeft);
1620 Sk4f devRect = Sk4f(min[2], min[3], max[0], max[1]);
1623 return is_nan_or_clipped(devRect, Sk4f::Load(&fDeviceClipBounds.fLeft));