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

  /hardware/qcom/display/msm8084/libqdutils/
cb_utils.cpp 31 void getUnion(hwc_rect_t& rect1,hwc_rect_t& rect2, hwc_rect_t& irect) {
33 irect.left = min(rect1.left, rect2.left);
34 irect.top = min(rect1.top, rect2.top);
35 irect.right = max(rect1.right, rect2.right);
36 irect.bottom = max(rect1.bottom, rect2.bottom);
  /hardware/qcom/display/msm8226/libqdutils/
cb_utils.cpp 31 void getUnion(hwc_rect_t& rect1,hwc_rect_t& rect2, hwc_rect_t& irect) {
33 irect.left = min(rect1.left, rect2.left);
34 irect.top = min(rect1.top, rect2.top);
35 irect.right = max(rect1.right, rect2.right);
36 irect.bottom = max(rect1.bottom, rect2.bottom);
  /hardware/qcom/display/msm8994/libqdutils/
cb_utils.cpp 31 void getUnion(hwc_rect_t& rect1,hwc_rect_t& rect2, hwc_rect_t& irect) {
33 irect.left = min(rect1.left, rect2.left);
34 irect.top = min(rect1.top, rect2.top);
35 irect.right = max(rect1.right, rect2.right);
36 irect.bottom = max(rect1.bottom, rect2.bottom);
  /external/skia/include/gpu/
GrClip.h 18 * masks. 'A GrClip is either wide open, just an IRect, just a Rect, or a full clipstack.
59 fClip.fIRect = other.irect();
86 return this->irect() == other.irect();
116 const SkIRect& irect() const { function in class:GrClip
140 (kIRect_ClipType == fClipType && this->irect().contains(rect));
146 (kIRect_ClipType == fClipType && this->irect().contains(rect));
157 (kIRect_ClipType == fClipType && this->irect().contains(rect));
  /external/skia/src/gpu/
GrClip.cpp 31 *devResult = this->irect();
GrDrawTarget.h 135 const SkIRect& irect) {
136 SkRect rect = SkRect::Make(irect);
GrClipMaskManager.cpp 236 // The clip mask manager always draws with a single IRect so we special case that logic here
243 SkIRect scissor = clip.irect();
    [all...]
  /external/skia/include/core/
SkRect.h 163 * Return a new IRect, built as an offset of this rect.
170 * Return a new IRect, built as an inset of this rect.
436 static SkRect SK_WARN_UNUSED_RESULT MakeFromIRect(const SkIRect& irect) {
438 r.set(SkIntToScalar(irect.fLeft),
439 SkIntToScalar(irect.fTop),
440 SkIntToScalar(irect.fRight),
441 SkIntToScalar(irect.fBottom));
445 static SkRect SK_WARN_UNUSED_RESULT Make(const SkIRect& irect) {
447 r.set(SkIntToScalar(irect.fLeft),
448 SkIntToScalar(irect.fTop)
    [all...]
  /external/skia/src/device/xps/
SkXPSDevice.cpp 1404 const SkIRect& irect = clip; local
    [all...]
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_utils.cpp 1098 hwc_rect_t irect = getIntersection(layer1->displayFrame, local
1216 hwc_rect_t irect = getIntersection(bottomframe, topframe); local
    [all...]
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_utils.cpp 1084 hwc_rect_t irect = getIntersection(layer1->displayFrame, local
1203 hwc_rect_t irect = getIntersection(bottomframe, topframe); local
    [all...]
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_utils.cpp 1291 hwc_rect_t irect = getIntersection(layer1->displayFrame, local
1412 hwc_rect_t irect = getIntersection(bottomframe, topframe); local
    [all...]
  /external/skia/tests/
PictureTest.cpp 1160 const SkIRect irect = { 2, 2, 3, 3 }; local
    [all...]

Completed in 431 milliseconds