--- old/modules/graphics/src/main/java/com/sun/javafx/tk/TKStage.java 2016-04-05 16:33:32.000000000 -0700 +++ new/modules/graphics/src/main/java/com/sun/javafx/tk/TKStage.java 2016-04-05 16:33:32.000000000 -0700 @@ -81,13 +81,18 @@ * @param ch the new window content height, ignored if set to -1 * @param xGravity the xGravity coefficient * @param yGravity the yGravity coefficient + * @param renderScaleX new rendering scale, ignored if < 1 + * @param renderScaleY new rendering scale, ignored if < 1 */ public void setBounds(float x, float y, boolean xSet, boolean ySet, float w, float h, float cw, float ch, - float xGravity, float yGravity); + float xGravity, float yGravity, + float renderScaleX, float renderScaleY); - public float getUIScale(); - public float getRenderScale(); + public float getPlatformScaleX(); + public float getPlatformScaleY(); + public float getOutputScaleX(); + public float getOutputScaleY(); public void setIcons(java.util.List icons);