Hi, I am creating a watch face and looking for saving battery as much as possible.
After looking at the profiler in the simulator i found out that the draw functions are the heavy ones, which is not surprising.
I saw that the setClip function is limiting the area of the drawing. Will it have major influence in terms of battery drain and total time it takes to draw?
I have places where the area limit will be significantly lower like writing the Date and places where it will less meaningful (for example the minutes tick in the analog clock, which can take 1/4 of the entire screen if the angle is diagonal due to the setClip being a rectengle shape).
Trying to figure out where it is benefitting to use setClip before drawing.
Thank you in advance!