This is a tutorial on how to get Bloboats and some other
OpenGL 1.x games to work on the Pi.
NOTE: glshim, the piece of software that translates OpenGL 1.x functions into OpenGL ES ones, is entirely lunixbochs' work. I just wrote this little tutorial to bring to the attention of more users.
0. Install
git if it's not installed yet:
1. Download the
glshim source files by
lunixbochs (aka aegis on this forum):
Code: Select all
git clone https://github.com/lunixbochs/glshim
2. Compile it:
Code: Select all
cd glshim
cmake . -DBCMHOST=1
make GL
3. Install
bloboats:
4. Start X (I'm not sure why, but this seems to be necessary):
5. Open a terminal emulator under X. (eg.: lxterminal or xfce4-terminal)
6. Start bloboats using this command:
Code: Select all
LD_LIBRARY_PATH=/home/pi/glshim/lib LIBGL_FB=1 bloboats
7. Have fun!
