Re: [9] Review request for 8150844 [hidpi] [macosx] should -Dsun.java2d.uiScale be taken into account for OS X?

2016-03-16 Thread Alexander Stepanov
Hello Alexandr, just a minor remark about is2x() in tests: do we still need this method in MultiresolutionIconTest? The following simple check can be used in doTest() instead: boolean is2x = "2".equals(scale); Color expected = is2x ? C2X : C1X, unexpected = is2x ? C1X : C2X; the same,

[9] Review request for 8150844 [hidpi] [macosx] should -Dsun.java2d.uiScale be taken into account for OS X?

2016-03-16 Thread Alexander Scherbatiy
Hello, Could you review the fix: bug: https://bugs.openjdk.java.net/browse/JDK-8150844 webrev: http://cr.openjdk.java.net/~alexsch/8150844/webrev.00 The sun.java2d.uiScale property is now used in CGraphicsDevice. The requested tests are updated. Thanks, Alexandr.