So I'm having a little trouble getting the openGL camera to do what I want. Basically I want it to move to a certain location based on my keyboard input, render the scene to a texture, then move back to its previous location and then render the texture to a quad. The effect I want to go for is the scene moving around on my quad while the quad stays still. However no matter what I do the quad itself always winds up moving along with the texture.
I'm basically doing the following:
SetMatrices;
gluLookAt(randomposition);
renderSceneToTexture;
gluLookAt(originalPosition)
texturemap my quad/render to screen.
What am I missing here? My rendering code is fine because when I don't mess around with the camera everything renders correctly.