On Thu, 16 Jan 2020 10:58:12 GMT, Ambarish Rapte <ara...@openjdk.org> wrote:
>> The pull request has been updated with 1 additional commit. > > modules/javafx.graphics/src/main/java/javafx/scene/Scene.java line 1312: > >> 1311: int tileWidth = Math.min(maxTextureSize, width - >> xOffset); >> 1312: int tileHeight = Math.min(maxTextureSize, height - >> yOffset); >> 1313: WritableImage tile = doSnapshotTile(scene, xMin + >> xOffset, yMin + yOffset, tileWidth, tileHeight, root, transform, >> depthBuffer, fill, camera, null); > > `int xOffset = i * maxTextureSize;` > `int tileWidth = Math.min(maxTextureSize, width - xOffset);` > > These two lines should be moved to the outer loop of horizontal tabs. done in 501917284e0490d16b1831fcd854e31a779449b9 ------------- PR: https://git.openjdk.java.net/jfx/pull/68