Resizing stage creates delays in platform.runLater pool?

2014-06-02 Thread Guillaume Anctil
Hi, I have encountered severe lag in my application when resizing the stage while an animation is running. I've made this very simple example code to reproduce the issue: https://github.com/Drakkoon/LWJGL-FX/blob/master/src/JavaFXResizeTest.java This is only a tread that acquires a semaphore, pr

Re: Resizing stage creates delays in platform.runLater pool?

2014-06-02 Thread Guillaume Anctil
t 10:23 AM, Richard Bair wrote: > My guess would be that the number of resize events is swamping the event > queue. > > > On Jun 2, 2014, at 7:20 AM, Guillaume Anctil wrote: > > > > Hi, > > > > I have encountered severe lag in my application when resizing the stag

Re: Resizing stage creates delays in platform.runLater pool?

2014-06-02 Thread Guillaume Anctil
order=sw and see if this changes anything. > > -- > best regards, > Anthony > > > On 6/2/2014 6:20 PM, Guillaume Anctil wrote: > >> Hi, >> >> I have encountered severe lag in my application when resizing the stage >> while an animation is running. &

FXMLLoader checking code conventions too much?

2014-06-05 Thread Guillaume Anctil
Hi, on a project I work on, the code convention does not follow the Java standard and class names start with a lower case 'c': "cSomeClass.java" In the parsing of the FXMLLoader, the loadType function looks like this: int i = name.indexOf('.'); int n = name.length(); while (i != -1 && i < n

Most JavaFX apps unusable on Windows 10 (combo boxes bug)

2015-09-14 Thread Guillaume Anctil
Hi, I recently upgraded to Windows 10 and I now have to resort to using a VM to use most of my JavaFX based apps since combo boxes causes the applications to hang when used. It seems like this bug as been reported but its cause might have been misrepresented and/or its severity misjudged. ( https

Re: Most JavaFX apps unusable on Windows 10 (combo boxes bug)

2015-09-15 Thread Guillaume Anctil
That's a catastrophic bug that needs to be fixed in an emergency update. >> Many new Windows laptops have Intel GPUs with touchscreens that you can't >> disconnect, and Microsoft is pushing Windows 10 to all of them. Apparently >> no JavaFX app with a ComboBox can run on the

Re: Most JavaFX apps unusable on Windows 10 (combo boxes bug)

2015-09-15 Thread Guillaume Anctil
gt; java -Dglass.accessible.force=false ... > > If you can try that and let me know if it works for you (it does on our > system with the test case attached to the bug report), then I will add that > information to the JIRA. > > -- Kevin > > > > Guillaume Anctil wrote: > > Tha