Home > Software design >  JavaFX memory usage: setFill() vs -fx-fill
JavaFX memory usage: setFill() vs -fx-fill

Time:03-23

I'm currently working on a 2D top-down game written in Java(FX). With each new game world a random map (background and vegetation) will be created based on Perlin Noise, the amount of created objects lies between 5000 - 7000. The individual parts of the vegetation (trees, bushes, rocks, etc.) are represented as rectangles "filled" with an image.

While playing the game, a player can exit a current world and create a new random one whenever he/she wants. When doing so, 5000 - 7000 new objects will be created that all need an image.

As far as I know there are two ways in JavaFX to add an image to a rectangle:

  1. By using rectangle.setFill(new ImagePattern(new Image(path)))
  2. Or by adding a CSS styleclass and using -fx-fill: url(path)

With the first option I very soon ran into OutOfMemoryErrors, while the second option runs perfectly smooth. I decided to start up VisualVM to see how big the difference in memory usage actually is, and it is insane. See the screenshots from VisualVM below to get an idea (3 new world are being created):

option1

option2

While both options store the image data within the memory's byte[], I'm wondering where this huge difference in memory usage is comming from? Is CSS somehow able to "fill" the rectangle without creating some sort of an image container and the image itself? If so, wouldn't it be possible to adapt that to JavaFXs setFill() method? What am I missing?

  • Related