Hello, is it possible to use multiple clips for the onPartialUpdate function?
I mean like this:
dc.setClip(x, y, width, height);
dc.setColor(Graphics.COLOR_TRANSPARENT, Graphics.COLOR_TRANSPARENT);
dc.fillRoundedRectangle(x, y, width, height, radius);
dc.clearClip();
dc.setClip(x, y, width, height);
dc.setColor(Graphics.COLOR_TRANSPARENT, Graphics.COLOR_TRANSPARENT);
dc.fillRoundedRectangle(x, y, width, height, radius);
dc.clearClip();
Or how can I load multiple objects but not at once?
I have already read the VS1hz- thread
Thank you