RFR: 8283786: Update to Visual Studio 2022 version 17.1.0 on Windows

2022-04-02 Thread Kevin Rushforth
This patch updates the compiler to Visual Studio 2022 version 17.1.0 on Windows, in order to match JDK 19 -- see [JDK-8283723](https://bugs.openjdk.java.net/browse/JDK-8283723). I ran a full build and test, including media and WebKit. - Commit messages: - 8283786: Update to

Re: RFR: 8284184: Crash in GraphicsContextJava::drawLinesForText on https://us.yahoo.com/

2022-04-02 Thread Jay Bhaskar
On Sat, 2 Apr 2022 08:29:43 GMT, Jay Bhaskar wrote: > Issue: Floating point overflow , when making end point for line drawing as > FloatPoint endPoint = startPoint + FloatPoint(widths.last(), 0); > Solution: traverse widths to calculate end point and increment start point. The

Re: RFR: 8284184: Crash in GraphicsContextJava::drawLinesForText on https://us.yahoo.com/

2022-04-02 Thread Kevin Rushforth
On Sat, 2 Apr 2022 08:29:43 GMT, Jay Bhaskar wrote: > Issue: Floating point overflow , when making end point for line drawing as > FloatPoint endPoint = startPoint + FloatPoint(widths.last(), 0); > Solution: traverse widths to calculate end point and increment start point. I'll take a closer

Re: RFR: 8181084: JavaFX show big icons in system menu on macOS with Retina display [v2]

2022-04-02 Thread Paul
> I hit on JDK-8181084 while making some changes to Scene Builder, so I decided > to investigate. > > Please note: I have not done any Objective-C or MacOS development before. So > I would really like some feedback from someone else who knows this stuff > better. > > Anyway, after some

RFR: 8284184: Crash in GraphicsContextJava::drawLinesForText on https://us.yahoo.com/

2022-04-02 Thread Jay Bhaskar
Issue: Floating point overflow , when making end point for line drawing as FloatPoint endPoint = startPoint + FloatPoint(widths.last(), 0); Solution: traverse widths to calculate end point and increment start point. - Commit messages: - Merge remote-tracking branch