Module: wine Branch: refs/heads/master Commit: 008c23d06a5426555f0fe9ee6f8661983a166ee3 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=008c23d06a5426555f0fe9ee...
Author: H. Verbeet hverbeet@gmail.com Date: Mon Aug 7 19:23:49 2006 +0200
wined3d: Improve a few query traces.
The query type is useful to have in query TRACEs. IWineD3DQueryImpl_GetDataSize isn't really a stub.
---
dlls/wined3d/query.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/wined3d/query.c b/dlls/wined3d/query.c index 93d595b..a4f0b9d 100644 --- a/dlls/wined3d/query.c +++ b/dlls/wined3d/query.c @@ -251,7 +251,7 @@ static HRESULT WINAPI IWineD3DQueryImpl /*dwGetDataFlags = 0 || D3DGETDATA_FLUSH D3DGETDATA_FLUSH may return WINED3DERR_DEVICELOST if the device is lost */ - FIXME("(%p) : stub\n", This); + FIXME("(%p) : type %#x, Partial stub\n", This, This->type); return S_OK; /* S_OK if the query data is available*/ }
@@ -259,7 +259,7 @@ static HRESULT WINAPI IWineD3DQueryImpl static DWORD WINAPI IWineD3DQueryImpl_GetDataSize(IWineD3DQuery* iface){ IWineD3DQueryImpl *This = (IWineD3DQueryImpl *)iface; int dataSize = 0; - FIXME("(%p) : stub\n", This); + TRACE("(%p) : type %#x\n", This, This->type); switch(This->type){ case WINED3DQUERYTYPE_VCACHE: dataSize = sizeof(WINED3DDEVINFO_VCACHE);