I have problem with starting JavaFX application on Banana Pi Pro(Bananian OS) system.
From my view the problem in GPU configuration. I have configured it by this instruction http://wiki.lemaker.org/BananaPro/Pi:GPU
All things configured for framebuffer version because javaFX executes in framebufer. On appllication start everytime the same error like on picture.
This application works without any problems on Raspberry Pi and on Windows system. Can somebody help in this question?
Start JavaFX application on Banana Pi Pro
722 Views Asked by Yevhen At
1
There are 1 best solutions below
Related Questions in JAVAFX
- Error trying to generate Makefile for glBinding
- Eclipse Makefile: Make Variables are skipped
- Errors in makefile for qemu 0.14.1 in ubuntu 15.04 64 bit
- C++ Struct prototyping in separate header file
- Reuse jquery plugin without conflict
- How do I a conditional build through a make file?
- basic makefile ifeq how to
- (automake, libtool) build fails in automake when using same source file name in different directory
- Makefile pattern rules differences
- Errors while trying to run make on source code
Related Questions in FRAMEBUFFER
- Error trying to generate Makefile for glBinding
- Eclipse Makefile: Make Variables are skipped
- Errors in makefile for qemu 0.14.1 in ubuntu 15.04 64 bit
- C++ Struct prototyping in separate header file
- Reuse jquery plugin without conflict
- How do I a conditional build through a make file?
- basic makefile ifeq how to
- (automake, libtool) build fails in automake when using same source file name in different directory
- Makefile pattern rules differences
- Errors while trying to run make on source code
Related Questions in BANANA-PI
- Error trying to generate Makefile for glBinding
- Eclipse Makefile: Make Variables are skipped
- Errors in makefile for qemu 0.14.1 in ubuntu 15.04 64 bit
- C++ Struct prototyping in separate header file
- Reuse jquery plugin without conflict
- How do I a conditional build through a make file?
- basic makefile ifeq how to
- (automake, libtool) build fails in automake when using same source file name in different directory
- Makefile pattern rules differences
- Errors while trying to run make on source code
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I had problems some time ago while trying to run JavaFX on ARM with Mali-400 graphic driver. I am unsure if this GPU and its driver is/will be supported, maybe I'm wrong or it will be supported later by OpenJFX developers. In my case it turned out to be an issue of the Mali driver itself.
You can still run the Javafx program using the software renderer, adding -Dprism.order=sw and -Djavafx.platform=fb (try also with other platforms) to the command line. Also, adding -Dprism.verbose=true may help you to follow the steps performed by the underlying JavaFX implementation before saying there is no pipeline for GPU rendering. In any case, JavaFX is not able to use 3D acceleration on your platform.
I already asked in Oracle forums but I got no answers. In the question you'll find additional details. https://community.oracle.com/message/12488945#12488945
Also, you should ensure that 3d acceleration is working on your platform and it is configured correctly on framebuffer and not on X11 only (if active).
Note: Remember that Oracle itself is not supporting JavaFX on ARM any more, due to the large number of different platforms. Also, 3d drivers provided by the manufacturer are probably not open sourced, and from my knowledge Raspberry PI was one of the few ARM platforms that were supported by Oracle's JavaFX. For more info: Java Development Kit for ARM Release Notes 8 Update 33