istereo

annotate src/ESRenderer.h @ 37:e60f9d8af28d

fixed the orientation of the tunnel when in non-stereo mode
author John Tsiombikas <nuclear@mutantstargoat.com>
date Fri, 09 Sep 2011 23:37:38 +0300
parents 1bb950d0976b
children ff055bff6a15
rev   line source
nuclear@0 1 #import <QuartzCore/QuartzCore.h>
nuclear@0 2
nuclear@0 3 #import <OpenGLES/EAGL.h>
nuclear@0 4 #import <OpenGLES/EAGLDrawable.h>
nuclear@0 5
nuclear@0 6 @protocol ESRenderer <NSObject>
nuclear@0 7
nuclear@0 8 - (void)render;
nuclear@0 9 - (BOOL)resizeFromLayer:(CAEAGLLayer *)layer;
nuclear@0 10
nuclear@0 11 @end