On Tue, 1 Sep 2026 21:55:09 GMT, Jose Pereda <[email protected]> wrote:
>> back in the olden days, sz+sz was much faster than sz*2... >> with your permission, I'll leave it as is > > Regardless of sz+sz/sz*2, please note that this is still pending: > > This is wrong: > > d[sz - 1] -= lineSpacing; > > and it should be any of: > > d[2 * sz - 1] -= ... > > or > > d[sz + sz - 1] -= ... > > or better then: > > d[d.length - 1] -= ... missed this, thanks! ------------- PR Review Comment: https://git.openjdk.org/jfx/pull/2280#discussion_r3908792569
