[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.platform.swt] Re: SWT_AWT/OpenGL pb on MAC os
|
- From: Ric Wright <riwright@xxxxxxxxx>
- Date: Sun, 27 Apr 2008 10:01:40 -0700
- Newsgroups: eclipse.platform.swt
- Organization: EclipseCorner
- Thread-index: AcioiFxx1OQtbumgV0C9PYsnzd1JnA==
- Thread-topic: SWT_AWT/OpenGL pb on MAC os
- User-agent: Microsoft-Entourage/12.1.0.080305
Laurent-
Saw your post on the news group and wondered if you would mind a question. A
while ago I did some experimenting with the new OpenGL SWT support in
Eclipse. I got it to work in a view and it worked pretty well. But then I
ran into a wall when I realized that the SWT support was incomplete. No
text support for example.
I dropped it for a while. But I had a little spare time recently and started
looking at JOGL. This seems more complete, but is unfortunately based on
AWT.
What are you using? JOGL? Or? What has your experience been?
TIA,
Ric Wright
On 2/22/08 11:01 AM, in article
996068f49b3f20758c511279bbe0a070$1@xxxxxxxxxxxxxxx, "Laurent M."
<totolaricot@xxxxxxx> wrote:
> 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
>
> anyone else seen that?
>