Dmitry Timoshkov : gdiplus: Dump the matrix passed to GdipSetWorldTransform .
Module: wine Branch: master Commit: 7c8e8fc5e2ea09b26a3e1956779ff3d12b008e33 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7c8e8fc5e2ea09b26a3e195677... Author: Dmitry Timoshkov <dmitry(a)baikal.ru> Date: Wed Aug 15 12:11:38 2012 +0900 gdiplus: Dump the matrix passed to GdipSetWorldTransform. --- dlls/gdiplus/graphics.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c index 85234c8..2b7a87b 100644 --- a/dlls/gdiplus/graphics.c +++ b/dlls/gdiplus/graphics.c @@ -5587,6 +5587,10 @@ GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics *graphics, GpMatrix *matrix if(graphics->busy) return ObjectBusy; + TRACE("%f,%f,%f,%f,%f,%f\n", + matrix->matrix[0], matrix->matrix[1], matrix->matrix[2], + matrix->matrix[3], matrix->matrix[4], matrix->matrix[5]); + GdipDeleteMatrix(graphics->worldtrans); return GdipCloneMatrix(matrix, &graphics->worldtrans); }
participants (1)
-
Alexandre Julliard