How to disable or bypass Hardware Graphics Acceleration(Prism) in JavaFX

The j2d graphics pipeline is kind of deprecated in JavaFX 8, so it’s better to use the software pipeline: -Dprism.order=sw. To verify that you are actually using it you could switch on logging: -Dprism.verbose=true

Leave a Comment