I have been working on an OpenGL/RCP app to do 3D display of HLA
simulations over top the earth globe. I ran into something odd: on MAC OS
(not tested on other platforms), fastviews to show up behind my main GL
canvas (hosted inside a intermediary Composite):
public void createPartControl(Composite parent) {
Composite top = new Composite(parent, SWT.EMBEDDED);
top.setLayoutData(new GridData(GridData.FILL_BOTH));
java.awt.Frame GLFrame = SWT_AWT.new_Frame(top);
java.awt.Panel panel = new java.awt.Panel(new java.awt.BorderLayout());
GLFrame.add(panel);
I am trying here before asking somewhere else because something tells me
it is a low level pb