Enlightenment CVS committal Author : raster Project : e17 Module : libs/evas
Dir : e17/libs/evas/src/modules/engines/xrender_x11 Modified Files: evas_engine_xrender.c Log Message: and fix final off-by-a-bit in the xform. =================================================================== RCS file: /cvs/e/e17/libs/evas/src/modules/engines/xrender_x11/evas_engine_xrender.c,v retrieving revision 1.27 retrieving revision 1.28 diff -u -3 -r1.27 -r1.28 --- evas_engine_xrender.c 5 Nov 2006 12:51:23 -0000 1.27 +++ evas_engine_xrender.c 5 Nov 2006 12:53:25 -0000 1.28 @@ -326,8 +326,8 @@ // { sh--; h--; } t->matrix[0][0] = XDoubleToFixed((double)(sw) / (double)(w)); t->matrix[1][1] = XDoubleToFixed((double)(sh) / (double)(h)); - t->matrix[2][0] = tx; - t->matrix[2][1] = ty; + t->matrix[2][0] = (tx * sw) / w; + t->matrix[2][1] = (ty * sh) / h; } // when color multiplier is used want: instead ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs