JDK-8253530 : HiDPI with non-integer scaling causes artifacts
  • Type: Bug
  • Component: client-libs
  • Sub-Component: javax.swing
  • Affected Version: 9,10,11,15
  • Priority: P3
  • Status: Closed
  • Resolution: Not an Issue
  • OS: windows_10
  • CPU: x86_64
  • Submitted: 2020-09-19
  • Updated: 2022-12-08
  • Resolved: 2022-12-08
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
tbdResolved
Related Reports
Duplicate :  
Description
A DESCRIPTION OF THE PROBLEM :
When using non-integer HiDPI scaling (such as 125%, a common setting on Windows), graphical corruption can appear around the borders of components like JButton depending on their positions.

In the given example, there are three JButtons that are each 26 units tall inside a JPanel that is 26*3 = 78 units tall. At 125% scaling each button ends up at 32 pixels, but the pane ends up at 97 pixels with a one pixel gap between the second and third buttons. This gap contains garbage data that problem the second button was expected to write but didn't.

Note that the clip bounds for these buttons may be calculated as 26 or 27 height depending on their exact positions (due to floating point precision issues when applying the inverse scaling transform), although this appears to be clamped to height, at least one place.

Border drawing using -1 in unscaled space also seems dubious and could be related.

STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Run the provided code with 125% dpi scaling.

The garbage is not always noticeable. In the given example, I usually see noticeable garbage after hovering Button 2.

This example seems sensitive to the exact positions of the elements (although many arrangements can cause this kind of problem). In case this is not consistent between systems, the positions on my system are (x,y,w,h):
container: 0,0,152,88
panel: 35,5,82,78
button 1: 0,0,82,26
button 2: 0,26,82,26
button 3: 0,52,82,26

EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
There is no gap between the buttons.
ACTUAL -
There is a one pixel gap between Button 2 and Button 3. In this gap, the screen contains garbage.

Screenshot: https://imgur.com/RVYgYty

---------- BEGIN SOURCE ----------
import javax.swing.*;

public class Test {

    public static void main(String[] args) {
        JPanel container = new JPanel();
        JPanel panel = new JPanel();
        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
        for(int i = 1; i <= 3; i++) panel.add(new JButton("Button " + i));
        JFrame frame = new JFrame();
        container.add(panel);
        frame.add(container);
        frame.pack();
        frame.setVisible(true);
    }
  
}
---------- END SOURCE ----------

FREQUENCY : always



Comments
It's not actually a regression..We have introduced Hidpi support from jdk9 onwards and we see this 1 pixel gap,probably because of some rounding issues for 1.25 scale from jdk9 onwards in this test.
24-09-2020

Checked with reported version 14.0.2, Windows 10 and display 125% scaling, could observe the gap between button 2 and button3 (attached screenshots) Test Results: ============= 8u261 : Pass 14.0.2 : Fail 15 : Fail 16ea16 : Fail 11.0.8 : Fail
23-09-2020