• Stars
    star
    188
  • Rank 205,563 (Top 5 %)
  • Language
    C
  • Created almost 11 years ago
  • Updated almost 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

an introduction to using openGL on the Raspberry Pi

openGLES 2.0 tutorial for Raspberry Pi

Install necessary tools:

sudo apt-get install git cmake libglm-dev

Clone the repository:

git clone https://github.com/peepo/openGL-RPi-tutorial.git

Build one of the examples:

cd openGL-RPi-tutorial/build
cmake ..
cd tutorial01_first_screen/
make
./tutorial01_first_screen

Build all examples (takes a while):

cd openGL-RPi-tutorial/build
cmake ..
make

start with tutorial01 to 08 then encode, and finally encode_OGL please send comments, and report bugs to the current maintainer: Jonathan Chetwynd

[email protected]

created with assistance from rktring/panik and in conjunction with these excellent resources:

openGL tutorials 1-5: http://www.opengl-tutorial.org/

openGLES 2.0 Programmers Guide 2008, Raspberry Pi code port: http://benosteen.wordpress.com/2012/04/27/using-opengl-es-2-0-on-the-raspberry-pi-without-x-windows/

Chris Cummings' My Robot Blog http://robotblogging.blogspot.co.uk/2013/10/pi-eyes-stage-1.html

drhastings' robots: https://github.com/drhastings/balance

and videos: http://www.youtube.com/user/drhastings90

okay so I lifted the code, so blame me not them....

my intention is to further understanding, by using only the minimum necessary code. Unfortunately at this time I failed rather badly

~:"