From 008c23d06a5426555f0fe9ee6f8661983a166ee3 Mon Sep 17 00:00:00 2001 From: "H. Verbeet" Date: Mon, 7 Aug 2006 19:23:49 +0200 Subject: [PATCH] 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 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/wined3d/query.c b/dlls/wined3d/query.c index 93d595b4254..a4f0b9d26da 100644 --- a/dlls/wined3d/query.c +++ b/dlls/wined3d/query.c @@ -251,7 +251,7 @@ static HRESULT WINAPI IWineD3DQueryImpl_GetData(IWineD3DQuery* iface, void* pDa /*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_GetData(IWineD3DQuery* iface, void* pDa 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);