Skip to content

Commit f08958b

Browse files
committed
CSSTUDIO-1905 Add explanatory comment.
1 parent 9ef752e commit f08958b

File tree

1 file changed

+1
-1
lines changed
  • app/display/representation-javafx/src/main/java/org/csstudio/display/builder/representation/javafx/widgets

1 file changed

+1
-1
lines changed

app/display/representation-javafx/src/main/java/org/csstudio/display/builder/representation/javafx/widgets/PictureRepresentation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public ImageView createJFXNode() throws Exception
5858
final ImageView iv = new ImageView();
5959
iv.setSmooth(true);
6060
iv.setCache(true);
61-
iv.setCacheHint(CacheHint.SCALE);
61+
iv.setCacheHint(CacheHint.SCALE); // Prevents excessive VRAM usage when zooming in using the D3D library for rendering under Windows.
6262
iv.getTransforms().addAll(translate, rotation);
6363
return iv;
6464
}

0 commit comments

Comments
 (0)