In OpenGL ES, how do I specify what the maximum visibility distance is? I've found that when I do:
gl.glTranslatef(0,0,-10f);
everything I draw is invisible because it's too far away from the camera. How do I specify that it should draw things farther away?