Im using glScalef() for zooming in my program, now when i revert it back to the original size with code:
glScalef(1.0f/ZOOM, 1.0f/ZOOM, 1);
It doesnt work very well in high zooms... (maybe because of the lost decimals?)
How i can revert it back perfectly to the original size without any calculations like above?