istereo

diff src/ES2Renderer.h @ 30:8dd271942543

fixed everything
author John Tsiombikas <nuclear@mutantstargoat.com>
date Thu, 08 Sep 2011 14:52:13 +0300
parents 1bb950d0976b
children ff055bff6a15
line diff
     1.1 --- a/src/ES2Renderer.h	Thu Sep 08 08:31:15 2011 +0300
     1.2 +++ b/src/ES2Renderer.h	Thu Sep 08 14:52:13 2011 +0300
     1.3 @@ -17,11 +17,10 @@
     1.4      EAGLContext *context;
     1.5  
     1.6      // The pixel dimensions of the CAEAGLLayer
     1.7 -    GLint backingWidth;
     1.8 -    GLint backingHeight;
     1.9 +	int xsz, ysz;
    1.10  
    1.11      // The OpenGL ES names for the framebuffer and renderbuffer used to render to this view
    1.12 -    GLuint defaultFramebuffer, colorRenderbuffer;
    1.13 +	unsigned int fbo, rbuf_color, rbuf_depth;
    1.14  
    1.15      GLuint program;
    1.16  }