Merge branch 'master' of github.com:migueldeicaza/monotouch-samples

This commit is contained in:
Miguel de Icaza 2010-01-08 03:03:34 -05:00
Родитель b58dec603c fde90eb0a0
Коммит 980a5080df
2 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,8 @@
This sample shows how to use OpenGL in your application using the
high-level iPhoneOSGameView base class (this class derives from
UIView) and simplifies a lot of the code to set up the GL context.
Contrast this with the lower-level version available in OpenGLESSample
that derives directly from UIView and has to create and destroy the
rendering buffer manually.

Просмотреть файл

@ -0,0 +1,5 @@
This is a low-level sample that shows how to use OpenGL in your application,
in this sample the code to configure the framebuffer is done by hand.
If you want a higher-level sample check out the OpenGLESSample-GV which
uses the iPhoneOSGameView class that takes care of the buffer rendering