Module: wine Branch: refs/heads/master Commit: c6c6cf1f51efdcd7f4eaab8208d3f2aeb9804087 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=c6c6cf1f51efdcd7f4eaab82...
Author: H. Verbeet hverbeet@gmail.com Date: Sun Jul 30 23:26:21 2006 +0200
wined3d: Improve IWineD3DDeviceImpl_CreateTexture trace.
---
dlls/wined3d/device.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c index 2185054..17a9cbb 100644 --- a/dlls/wined3d/device.c +++ b/dlls/wined3d/device.c @@ -1123,7 +1123,9 @@ static HRESULT WINAPI IWineD3DDeviceImp unsigned int pow2Height = Height;
- TRACE("(%p), Width(%d) Height(%d) Levels(%d) Usage(%ld) ....\n", This, Width, Height, Levels, Usage); + TRACE("(%p) : Width %d, Height %d, Levels %d, Usage %#lx\n", This, Width, Height, Levels, Usage); + TRACE("Format %#x (%s), Pool %#x, ppTexture %p, pSharedHandle %p, parent %p\n", + Format, debug_d3dformat(Format), Pool, ppTexture, pSharedHandle, parent);
/* TODO: It should only be possible to create textures for formats that are reported as supported */