maximus5684 / sfml-pi

SFML for the Raspberry Pi (w/ hardware accelerated graphics and no X dependency)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SFML-Pi

SFML on the Raspberry Pi with hardware graphics and no X11 dependency.

Install

Step 1: Install the SFML dependencies

sudo apt-get install cmake libflac-dev libogg-dev libvorbis-dev libopenal-dev libjpeg8-dev libfreetype6-dev libudev-dev libraspberrypi-dev

Step 2: Build SFML-Pi

  • From the source directory for sfml-pi, run cmake with the '-DSFML_RPI=1' parameter.
  • Once cmake runs successfully, compile using 'sudo make install' and then 'sudo ldconfig'
  • The commands should look something like this:
mkdir build
cd build
cmake .. -DSFML_RPI=1 -DEGL_INCLUDE_DIR=/opt/vc/include -DEGL_LIBRARY=/opt/vc/lib/libEGL.so -DGLES_INCLUDE_DIR=/opt/vc/include -DGLES_LIBRARY=/opt/vc/lib/libGLESv1_CM.so
sudo make install
sudo ldconfig

That's it! You should now be able to use SFML on your raspberry pi with hardware accelerated graphics and no need to be running X.

More Info

Please consult the SFML readme for more info: [readme.txt][]

SFML logo

SFML — Simple and Fast Multimedia Library

SFML is a simple, fast, cross-platform and object-oriented multimedia API. It provides access to windowing, graphics, audio and network. It is written in C++, and has bindings for various languages such as C, .Net, Ruby, Python.

Authors

Download

You can get the latest official release on SFML's website. You can also get the current development version from the Git repository.

Install

Follow the instructions of the tutorials, there is one for each platform/compiler that SFML supports.

Learn

There are several places to learn SFML:

Contribute

SFML is an open-source project, and it needs your help to go on growing and improving. If you want to get involved and suggest some additional features, file a bug report or submit a patch, please have a look at the contribution guidelines.

About

SFML for the Raspberry Pi (w/ hardware accelerated graphics and no X dependency)

License:Other


Languages

Language:C++ 84.2%Language:Objective-C++ 7.1%Language:CMake 6.2%Language:Objective-C 2.3%Language:Makefile 0.2%