Hello,
What is the fastest way to fill a rectangle with a transparent color?
Simply using java.awt.Graphics and java.awt.Color like this is not fast enough:
Graphics g;
g.setColor(new Color(100, 100, 100, 100));
g.fillRect(new Rectangle(0, 0, 100, 100));
Is there a faster way to do this?
Thanks.
