ok… im not new to game programming, because ive made a few “games”. check out my site,
i was playing with lwjgl 0.5 a while ago… but i stopped programming for a while. ive been around here b4.
now i got lwjgl 0.8 and was looking at the nehe tutorials.
so first, is there a site or tutorial that explains what all this orthograph stuff, and all the things like
GL.glShadeModel(GL.GL_SMOOTH); // Enable Smooth Shading
GL.glClearColor(0.0f, 0.0f, 0.0f, 0.0f); // Black Background
GL.glClearDepth(1.0); // Depth Buffer Setup
GL.glEnable(GL.GL_DEPTH_TEST); // Enables Depth Testing
GL.glDepthFunc(GL.GL_LEQUAL); // The Type Of Depth Testing To Do
GL.glMatrixMode(GL.GL_PROJECTION); // Select The Projection Matrix
GL.glLoadIdentity();
actually does?
im completely new to opengl and 3d, and 2d using ogl, and i have no clue what that stuff does and i dont know what to look for since i have no idea how opengl works.
thanks…