Searched refs:leftRect (Results 1 - 3 of 3) sorted by relevance
/third_party/skia/docs/examples/ |
H A D | Rect_intersect_2.cpp | 7 SkRect leftRect = { 10, 40, 50, 80 }; in REG_FIDDLE() local 8 SkDebugf("%s intersection: ", leftRect.intersect({30, 60, 70, 90}) ? "" : "no "); in REG_FIDDLE() 9 SkDebugf("%g, %g, %g, %g\n", leftRect.left(), leftRect.top(), in REG_FIDDLE() 10 leftRect.right(), leftRect.bottom()); in REG_FIDDLE()
|
H A D | Rect_intersect.cpp | 7 SkRect leftRect = { 10, 40, 50, 80 }; in REG_FIDDLE() local 9 SkDebugf("%s intersection: ", leftRect.intersect(rightRect) ? "" : "no "); in REG_FIDDLE() 10 SkDebugf("%g, %g, %g, %g\n", leftRect.left(), leftRect.top(), in REG_FIDDLE() 11 leftRect.right(), leftRect.bottom()); in REG_FIDDLE()
|
H A D | IRect_intersect.cpp | 7 SkIRect leftRect = { 10, 40, 50, 80 }; in REG_FIDDLE() local 9 SkDebugf("%s intersection: ", leftRect.intersect(rightRect) ? "" : "no "); in REG_FIDDLE() 10 SkDebugf("%d, %d, %d, %d\n", leftRect.left(), leftRect.top(), in REG_FIDDLE() 11 leftRect.right(), leftRect.bottom()); in REG_FIDDLE()
|
Completed in 1 milliseconds