Y Axis inverted on vertex output
- by Yonathan Klijnsma
I've got my project running and somehow it seems my vertex y components are inverted. 10 in the positive on Y goes down and 10 negative on the Y axis goes up.
I can't find anything with the initialization and I am not doing any negative scaling in the view matrix. I've never had something like this happen before, does anyone have some tips or things to look for ?
How I am sending verteces to the GPU ( Currently intermediate mode )
glVertex3f( x_pos_n, 10, z_pos );
I am using CG in the project but even without shaders the Y axis seems to be inverted.