Render To Texture Using OpenGL is not working but normal rendering works just fine
- by Franky Rivera
things I initialize at the beginning of the program
I realize not all of these pertain to my issue I just copy and pasted what I had //overall initialized
//things openGL related I initialize earlier on in the project
glClearColor( 0.0f, 0.0f, 0.0f, 1.0f );
glClearDepth( 1.0f );
glEnable(GL_ALPHA_TEST);
glEnable( GL_STENCIL_TEST );
…