Module: wine Branch: master Commit: b66791118e260c2c7327be1e05f1ee455f6f7221 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b66791118e260c2c7327be1e05...
Author: H. Verbeet hverbeet@gmail.com Date: Thu May 3 20:57:23 2007 +0200
wined3d: Make the IWineD3DDeviceImpl_ColorFill TRACE a bit more useful.
---
dlls/wined3d/device.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c index 2ad92da..90fbd99 100644 --- a/dlls/wined3d/device.c +++ b/dlls/wined3d/device.c @@ -5209,7 +5209,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_ColorFill(IWineD3DDevice *iface, IWineD IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *) iface; IWineD3DSurfaceImpl *surface = (IWineD3DSurfaceImpl *) pSurface; WINEDDBLTFX BltFx; - TRACE("(%p) Colour fill Surface: %p rect: %p color: %d\n", This, pSurface, pRect, color); + TRACE("(%p) Colour fill Surface: %p rect: %p color: 0x%08x\n", This, pSurface, pRect, color);
if (surface->resource.pool != WINED3DPOOL_DEFAULT && surface->resource.pool != WINED3DPOOL_SYSTEMMEM) { FIXME("call to colorfill with non WINED3DPOOL_DEFAULT or WINED3DPOOL_SYSTEMMEM surface\n");