Commit 7c8e8fc5 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

gdiplus: Dump the matrix passed to GdipSetWorldTransform.

parent e7b5e698
...@@ -5587,6 +5587,10 @@ GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics *graphics, GpMatrix *matrix ...@@ -5587,6 +5587,10 @@ GpStatus WINGDIPAPI GdipSetWorldTransform(GpGraphics *graphics, GpMatrix *matrix
if(graphics->busy) if(graphics->busy)
return ObjectBusy; 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); GdipDeleteMatrix(graphics->worldtrans);
return GdipCloneMatrix(matrix, &graphics->worldtrans); return GdipCloneMatrix(matrix, &graphics->worldtrans);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment