Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用一个图形库 (jPCT),对于 FrameBuffer 的背景,我希望它是透明的,这样我就可以将我的图形粘贴到另一个视图的顶部。
在onDrawFrame我的方法中:
onDrawFrame
fb.clear(back);
我试过的地方:
private RGBColor back = new RGBColor(0,0,0,0);
然而,这只会使背景完全变黑;我怎样才能变得透明?
谢谢。