Christian Costa : d3dx9_36: Turn FIXME into TRACE since function is implemented. Not supported formats are caught by final FIXME.
Module: wine Branch: master Commit: 17b18218254cdd52f4e40ca6bd0f50777293d576 URL: http://source.winehq.org/git/wine.git/?a=commit;h=17b18218254cdd52f4e40ca6bd... Author: Christian Costa <titan.costa(a)gmail.com> Date: Thu Feb 9 01:09:32 2012 +0100 d3dx9_36: Turn FIXME into TRACE since function is implemented. Not supported formats are caught by final FIXME. --- dlls/d3dx9_36/surface.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/dlls/d3dx9_36/surface.c b/dlls/d3dx9_36/surface.c index c3796ee..8049efc 100644 --- a/dlls/d3dx9_36/surface.c +++ b/dlls/d3dx9_36/surface.c @@ -59,10 +59,8 @@ HRESULT WINAPI D3DXGetImageInfoFromFileInMemory(LPCVOID data, UINT datasize, D3D IWICStream *stream; HRESULT hr; HRESULT initresult; - static int warn_once; - if (!warn_once++) - FIXME("(%p, %d, %p): partially implemented\n", data, datasize, info); + TRACE("(%p, %d, %p)\n", data, datasize, info); /* TODO: Add support for (or at least detect) DDS, PPM and DIB */
participants (1)
-
Alexandre Julliard