I'm drawing a big scheme that consist of a lot of lines. I do it in the drawRect:
method of UIView
. The scheme is larger than the layer of view and I check each line and draw it only if it intersects the visible rect. But at one moment I thought, should I do this? Maybe Quartz is already doing this test?
So the question is:
When I use function CGContextAddLineToPoint()
does the Core Graphics
tests this line for intersection with layer rect or it just draw it anyway?