I'm using a graphics library (jPCT) and for the background of the FrameBuffer I would like it to be transparent so that I can paste my graphics on top of another view.
In a onDrawFrame
method I have:
fb.clear(back);
Where I've tried:
private RGBColor back = new RGBColor(0,0,0,0);
However this just makes the background completely black; how can I get transparent?
Thanks.