Marcus Meissner : wined3d: Output the rectangles in the debug message.

Alexandre Julliard julliard at winehq.org
Mon Dec 1 07:34:19 CST 2008


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

Author: Marcus Meissner <marcus at jet.franken.de>
Date:   Sat Nov 29 08:57:14 2008 +0100

wined3d: Output the rectangles in the debug message.

---

 dlls/wined3d/swapchain.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/wined3d/swapchain.c b/dlls/wined3d/swapchain.c
index 6f4393a..b00d35a 100644
--- a/dlls/wined3d/swapchain.c
+++ b/dlls/wined3d/swapchain.c
@@ -138,7 +138,7 @@ static HRESULT WINAPI IWineD3DSwapChainImpl_Present(IWineD3DSwapChain *iface, CO
         IWineD3DSurface_BltFast(This->backBuffer[0], 0, 0, This->wineD3DDevice->logo_surface, NULL, WINEDDBLTFAST_SRCCOLORKEY);
     }
 
-    if (pSourceRect || pDestRect) FIXME("Unhandled present options %p/%p\n", pSourceRect, pDestRect);
+    if (pSourceRect || pDestRect) FIXME("Unhandled present rects %s/%s\n", wine_dbgstr_rect(pSourceRect), wine_dbgstr_rect(pDestRect));
     /* TODO: If only source rect or dest rect are supplied then clip the window to match */
     TRACE("presetting HDC %p\n", This->context[0]->hdc);
 




More information about the wine-cvs mailing list