winex11.drv: Store window and drawable rects in X11DRV_PDEVICE.
diff --git a/server/trace.c b/server/trace.c
index 0e07987..b128ad5 100644
--- a/server/trace.c
+++ b/server/trace.c
@@ -2521,10 +2521,12 @@
 static void dump_get_visible_region_reply( const struct get_visible_region_reply *req )
 {
     fprintf( stderr, " top_win=%p,", req->top_win );
-    fprintf( stderr, " top_org_x=%d,", req->top_org_x );
-    fprintf( stderr, " top_org_y=%d,", req->top_org_y );
-    fprintf( stderr, " win_org_x=%d,", req->win_org_x );
-    fprintf( stderr, " win_org_y=%d,", req->win_org_y );
+    fprintf( stderr, " top_rect=" );
+    dump_rectangle( &req->top_rect );
+    fprintf( stderr, "," );
+    fprintf( stderr, " win_rect=" );
+    dump_rectangle( &req->win_rect );
+    fprintf( stderr, "," );
     fprintf( stderr, " total_size=%u,", req->total_size );
     fprintf( stderr, " region=" );
     dump_varargs_rectangles( cur_size );