Re: Fullscreen issue on KeyListener event
Posted by
Sven Gothel on
Mar 29, 2012; 9:52pm
URL: https://forum.jogamp.org/Fullscreen-issue-on-KeyListener-event-tp3855615p3869246.html
On 03/29/2012 09:49 PM, gouessej [via jogamp] wrote:
>
>
> Actually, I have never tested this suggestion.
>
> Do you mean the bridge between NEWT and AWT relies on some native code?
NewtCanvasAWT is based on the native window parenting
using native platform code for each windowing system - yes.
A normal NEWT Window is being attached to the AWT Canvas's native Window
as it's parent. Hence native events may not be delivered from the underlying
parent, the AWT Canvas. That depends on the AWT native event processing ..
I would say .. don't rely on those AWT events in such case.
> If
> so, it explains why I don't reproduce my bug under Windows, only under GNU
> Linux.
~Sven