Thanks, both.
But I didn't explain well enough what I wanted. If I had only one immobile circle, then yes, using masking would be good. But I have thousands of little circles moving around. I want a pixel of the image to show if and only if there is at least one circle over it.
I could go thorough all the pixels, one by one, checking them against the circles, one by one. Or I could go through the circles, one by one, and setting a bool "show" to all the pixels. But that would be very, very slow.
Anyway, I would still like to know out of curiosity, if there is a way to accomplish this. But I decided to go on a different path for this.