Re: measuring time to render in javafx

2017-06-02 Thread Benjamin Gudehus
Hi Selim, there was a presentation a while back about PerformanceTracker and the anatomy of pulses: - Oleg Mazurov: “Optimizing JavaFX Applications” - https://www.youtube.com/watch?v=dw8se4uA1qc You can activate the pulse logging using Java start parameters. If you want something more sop

measuring time to render in javafx

2017-06-02 Thread Selim Dincer
Hey, I am looking for a way to measure how long it takes for JavaFX to render something graphically. Say I change the text of a label, then this will schedule a new pulse. How can I now actually get feedback when the rendering is done? In swing I guess I could override the paint or paintComponent