Dmitry Timoshkov : gdiplus: Print some additional information about device and image being drawn.

Alexandre Julliard julliard at winehq.org
Thu Aug 30 14:34:33 CDT 2012


Module: wine
Branch: master
Commit: e0fd87aea19acd4d37b1fc387a85dc209a5ec3c4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e0fd87aea19acd4d37b1fc387a85dc209a5ec3c4

Author: Dmitry Timoshkov <dmitry at baikal.ru>
Date:   Thu Aug 30 18:42:47 2012 +0900

gdiplus: Print some additional information about device and image being drawn.

---

 dlls/gdiplus/graphics.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index 383965a..640603a 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -3092,6 +3092,12 @@ GpStatus WINGDIPAPI GdipDrawImagePointsRect(GpGraphics *graphics, GpImage *image
         GpBitmap* bitmap = (GpBitmap*)image;
         int use_software=0;
 
+        TRACE("graphics: %.2fx%.2f dpi, fmt %#x, scale %f, image: %.2fx%.2f dpi, fmt %#x, color %08x\n",
+            graphics->xres, graphics->yres,
+            graphics->image && graphics->image->type == ImageTypeBitmap ? ((GpBitmap *)graphics->image)->format : 0,
+            graphics->scale, image->xres, image->yres, bitmap->format,
+            imageAttributes ? imageAttributes->outside_color : 0);
+
         if (imageAttributes ||
             (graphics->image && graphics->image->type == ImageTypeBitmap) ||
             ptf[1].Y != ptf[0].Y || ptf[2].X != ptf[0].X ||




More information about the wine-cvs mailing list