gdiplus: Dump the matrix passed to GdipSetWorldTransform.

This commit is contained in:
Dmitry Timoshkov 2012-08-15 12:11:38 +09:00 committed by Alexandre Julliard
parent e7b5e69843
commit 7c8e8fc5e2
1 changed files with 4 additions and 0 deletions

View File

@ -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);
}