[Hp5400backend-cvs-update] hp5400/hp5400 hp5400.c,1.16,1.17
Status: Alpha
Brought to you by:
soumarmt
From: <sou...@us...> - 2003-03-06 11:03:42
|
Update of /cvsroot/hp5400backend/hp5400/hp5400 In directory sc8-pr-cvs1:/tmp/cvs-serv18639 Modified Files: hp5400.c Log Message: removed black vertical strip for 1200 dpi Index: hp5400.c =================================================================== RCS file: /cvsroot/hp5400backend/hp5400/hp5400/hp5400.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** hp5400.c 6 Mar 2003 10:46:02 -0000 1.16 --- hp5400.c 6 Mar 2003 11:03:33 -0000 1.17 *************** *** 207,211 **** for( j=0; j< numLoop * numCalBlock * CALPIXBYBLOCK ; j++ ) { struct CalPixel *pixel = & calinfo[ j / CALPIXBYBLOCK ].pixels[ j % CALPIXBYBLOCK ]; ! i = j % numPixels; /* This is obviously not quite right. The values on --- 207,211 ---- for( j=0; j< numLoop * numCalBlock * CALPIXBYBLOCK ; j++ ) { struct CalPixel *pixel = & calinfo[ j / CALPIXBYBLOCK ].pixels[ j % CALPIXBYBLOCK ]; ! i = ( j % (int)( 0.80 * numPixels ) ) + (int)(0.10 * numPixels ); /* This is obviously not quite right. The values on |