View Single Post
Posts: 1 | Thanked: 0 times | Joined on Oct 2011
#72
The LWJGL 2.8.1 release contain the new opengl-es 2.0 bindings.

I have sucessfully compiled and tested LWJGL on several ARM boards. Will it be enough to run minecraft?... no read below...

First issue 1:

If LWJGL work at all depends on the quality of available libEGL.so and libGLES*.so library/drivers.

These librarys/drivers are created by the GPU core design team(AMD for the imx drivers, Nvidia for the tegra drivers, Imagination Technologies for the SGX drivers,ARM for the mali drivers etc),

The drivers are then supplied by the SoC manufacturer (Nvidia,Ti,Freescale,Qualcomm) to the end user, usually with restrictions on re-distribution. To my knowlege no ARM SoC have fully opensourced GPU drivers, only the drivers kernel part are opensourced but the real logic are inside the userspace librarys, this means that we can not fix any bugs or extend the driver itself, if the diver have missed to implement a feature, then we have to live with it. Also the userspace driver some times need to get recompiled for new kernel versions.

So here are a quick list of drivers that I have currently been able to get working with LWJGL on ARM:

The SGX omap4430 used by the Ti Pandaboard.
http://openjdk.gudinna.com/lwjgl-es/...oard-LWJGL.png
The Nvidia tegra2 alpha1 driver used by the ac100 and TrimSlice.
http://openjdk.gudinna.com/lwjgl-es/IMG_0669.JPG

Drivers that currently do not work:
The SGX omap3630 driver used by the Nokia N9
z430(now rebranded adreno 200) AMD driver used by the imx53 quickstart board.
The reason why they currently fail are because these two drivers do not like the provided default PixelFormat used by LWJGL, we have to alter LWJGL to figure out and supply the drivers prefered pixel format:
http://lwjgl.org/forum/index.php/topic,4266.0.html