From: Carsten W. <ca...@us...> - 2007-02-27 13:32:39
|
Update of /cvsroot/jake2/jake2/src/jake2/render/fast In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv15208/src/jake2/render/fast Modified Files: Mesh.java Removed Files: Anorms.java Log Message: shared usage of Anorms; moved to jake2.render package Index: Mesh.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/render/fast/Mesh.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Mesh.java 21 Nov 2006 02:22:19 -0000 1.3 --- Mesh.java 27 Feb 2007 13:32:34 -0000 1.4 *************** *** 6,27 **** */ /* ! Copyright (C) 1997-2001 Id Software, Inc. ! This program is free software; you can redistribute it and/or ! modify it under the terms of the GNU General Public License ! as published by the Free Software Foundation; either version 2 ! of the License, or (at your option) any later version. ! This program is distributed in the hope that it will be useful, [...1333 lines suppressed...] ! if ((currententity.flags & Defines.RF_DEPTHHACK) != 0) ! gl.glDepthRange(gldepthmin, gldepthmax); ! if (gl_shadows.value != 0.0f ! && (currententity.flags & (Defines.RF_TRANSLUCENT | Defines.RF_WEAPONMODEL)) == 0) { ! gl.glPushMatrix(); ! R_RotateForEntity(e); ! gl.glDisable(GL_TEXTURE_2D); ! gl.glEnable(GL_BLEND); ! gl.glColor4f(0, 0, 0, 0.5f); ! GL_DrawAliasShadow(paliashdr, currententity.frame); ! gl.glEnable(GL_TEXTURE_2D); ! gl.glDisable(GL_BLEND); ! gl.glPopMatrix(); } + gl.glColor4f(1, 1, 1, 1); + } } \ No newline at end of file --- Anorms.java DELETED --- |