When using a control embedded inside a VirtualizedScrollPane with the upcoming release 16 of JavaFX, then it is possible under specific circumstances that the method layoutChildren() becomes perpetually invoked, causing high CPU and GPU usage even when the application is idle.
These conditions are:
- Using openJFX 16 or higher at runtime
- The effective screen scale at which the window is rendered is not a multiple of 100% (i.e. 125%, 150% or 175%, etc...).
- The horizontal scrollbar is displayed.
The following code sample illustrates the issue, when run under javafx 16, with for instance a 125% scale (you can force it with -Dglass.win.uiScale=1.25 or -Dglass.gtk.uiScale=1.25, on windows or linux, respectively):
public class TextScroll extends Application {
private final static String LONG_LINE_OF_TEXT = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. " +
"Nulla viverra fringilla dictum. Integer faucibus laoreet nulla eget vehicula. " +
"Vivamus et arcu eget metus interdum tincidunt ac sed libero. Phasellus vestibulum" ;
@Override
public void start(Stage stage) throws Exception {
var textArea = new CodeArea();
textArea.replaceText(LONG_LINE_OF_TEXT);
Scene scene = new Scene(new VirtualizedScrollPane<>(textArea), 800, 600);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
The root cause for this, is that the VirtualizedScrollPane request a layout when the height of the horizontal scroll bar changes but in the course and the layout, the calculated value for this height changes, which in turns triggers a request layout, etc...
This is due to the fact that a bug was fixed in JavaFX 16 (https://bugs.openjdk.java.net/browse/JDK-8211294) where the mechanism which snaps coordinates to actual pixels on screen with a non integer scale factor was broken; this is now fixed in javaFX, but Flowless remains unaware of the need for enforcing snapping, which causes some coordinates calculated in Flowless to be rounded differently that their equivalent in JavaFX; in this case this is what caused the scrollbar height to be different in two nested calls to layoutChildren, and lead to the constant layout.
A solution is to use snapSize() method to ensure height and width are snapped (i.e. ceil'd) to pixels consistently with JavaFX.
(NB: Ideally, we'd want to use snapSizeX() and snapSizeY() instead of the deprecated snapSize() so that we properly support non square screen ratio, but this is not available in JavaFX 8 that Flowless is built against.)
When using a control embedded inside a
VirtualizedScrollPanewith the upcoming release 16 of JavaFX, then it is possible under specific circumstances that the methodlayoutChildren()becomes perpetually invoked, causing high CPU and GPU usage even when the application is idle.These conditions are:
The following code sample illustrates the issue, when run under javafx 16, with for instance a 125% scale (you can force it with
-Dglass.win.uiScale=1.25or-Dglass.gtk.uiScale=1.25, on windows or linux, respectively):The root cause for this, is that the
VirtualizedScrollPanerequest a layout when the height of the horizontal scroll bar changes but in the course and the layout, the calculated value for this height changes, which in turns triggers a request layout, etc...This is due to the fact that a bug was fixed in JavaFX 16 (https://bugs.openjdk.java.net/browse/JDK-8211294) where the mechanism which snaps coordinates to actual pixels on screen with a non integer scale factor was broken; this is now fixed in javaFX, but Flowless remains unaware of the need for enforcing snapping, which causes some coordinates calculated in Flowless to be rounded differently that their equivalent in JavaFX; in this case this is what caused the scrollbar height to be different in two nested calls to
layoutChildren, and lead to the constant layout.A solution is to use
snapSize()method to ensure height and width are snapped (i.e. ceil'd) to pixels consistently with JavaFX.(NB: Ideally, we'd want to use
snapSizeX()andsnapSizeY()instead of the deprecatedsnapSize()so that we properly support non square screen ratio, but this is not available in JavaFX 8 that Flowless is built against.)