From 7c8e8fc5e2ea09b26a3e1956779ff3d12b008e33 Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Wed, 15 Aug 2012 12:11:38 +0900 Subject: [PATCH] gdiplus: Dump the matrix passed to GdipSetWorldTransform. --- dlls/gdiplus/graphics.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c index 85234c8d98c..2b7a87bc9ba 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); } -- 2.11.4.GIT