|
From: Tim R. <ti...@us...> - 2004-08-16 15:44:20
|
Update of /cvsroot/csdopenglnet/csdOpenGL/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv768/tools Modified Files: ByteTexture2D.cs Log Message: corrected ByteTexture2DCVS: ---------------------------------------------------------------------- Index: ByteTexture2D.cs =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/tools/ByteTexture2D.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ByteTexture2D.cs 12 Jul 2004 17:17:29 -0000 1.1.1.1 --- ByteTexture2D.cs 16 Aug 2004 15:44:11 -0000 1.2 *************** *** 68,72 **** protected int lin( int x, int y, int z ) { ! return (Height-y-1)*(Height*Bits) + x*(Bits) + z; } --- 68,72 ---- protected int lin( int x, int y, int z ) { ! return (Height-y-1)*(Width*Bits) + x*(Bits) + z; } |