Re: NPE in PrismFontLoader.java: Loading primary font factory failed

2016-02-19 Thread Kevin Rushforth
What I meant was for you to find out whether the system pango library that javafx_font_pango.so depends upon is present. Run the "ldd" commands and make sure there are no missing dependencies. Also, I hadn't noticed you were trying to use the ARM bits. Maybe Dave Hill has some additional

Re: NPE in PrismFontLoader.java: Loading primary font factory failed

2016-02-19 Thread Maurice
Kevin, Yes, in lib/arm these libraries are present. I'm using the Oracle ARM JDK 1.8.0_33 fwiw. On the default ubuntu based image I can run JavaFX with this Java setup, but without HW acceleration. Maurice. root@udooqdl:/# find / -name "*javafx_font*.so"

Re: NPE in PrismFontLoader.java: Loading primary font factory failed

2016-02-19 Thread Kevin Rushforth
Another thing that might help diagnose which library has the problem is to run with "java -Djavafx.verbose=true ..." -- that option will print each native library as it is being loaded and print the exception message if one fails. -- Kevin Kevin Rushforth wrote: Do you have the pango and

Re: NPE in PrismFontLoader.java: Loading primary font factory failed

2016-02-19 Thread Kevin Rushforth
Do you have the pango and freetype libraries installed on your platform? One thing to check is whether any dependent libraries are missing for the following .so files: ldd libjavafx_font.so ldd libjavafx_font_freetype.so ldd libjavafx_font_pango.so -- Kevin Maurice wrote: I'm