Ivan Gyurdiev : wined3d: Downgrade Get*Shader FIXME to TRACE.

Alexandre Julliard julliard at wine.codeweavers.com
Sat Jun 10 06:26:19 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: d44d0b5edbe66e5a25337d3606c312359bc1553d
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=d44d0b5edbe66e5a25337d3606c312359bc1553d

Author: Ivan Gyurdiev <ivg2 at cornell.edu>
Date:   Fri Jun  9 17:46:38 2006 -0400

wined3d: Downgrade Get*Shader FIXME to TRACE.

---

 dlls/wined3d/pixelshader.c  |    2 +-
 dlls/wined3d/vertexshader.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/wined3d/pixelshader.c b/dlls/wined3d/pixelshader.c
index 25ac05b..0d163fc 100644
--- a/dlls/wined3d/pixelshader.c
+++ b/dlls/wined3d/pixelshader.c
@@ -113,7 +113,7 @@ HRESULT WINAPI IWineD3DPixelShaderImpl_G
 
 HRESULT WINAPI IWineD3DPixelShaderImpl_GetFunction(IWineD3DPixelShader* impl, VOID* pData, UINT* pSizeOfData) {
   IWineD3DPixelShaderImpl *This = (IWineD3DPixelShaderImpl *)impl;
-  FIXME("(%p) : pData(%p), pSizeOfData(%p)\n", This, pData, pSizeOfData);
+  TRACE("(%p) : pData(%p), pSizeOfData(%p)\n", This, pData, pSizeOfData);
 
   if (NULL == pData) {
     *pSizeOfData = This->baseShader.functionLength;
diff --git a/dlls/wined3d/vertexshader.c b/dlls/wined3d/vertexshader.c
index 6215aa4..9363d31 100644
--- a/dlls/wined3d/vertexshader.c
+++ b/dlls/wined3d/vertexshader.c
@@ -1480,7 +1480,7 @@ HRESULT WINAPI IWineD3DVertexShaderImpl_
 
 HRESULT WINAPI IWineD3DVertexShaderImpl_GetFunction(IWineD3DVertexShader* impl, VOID* pData, UINT* pSizeOfData) {
     IWineD3DVertexShaderImpl *This = (IWineD3DVertexShaderImpl *)impl;
-    FIXME("(%p) : pData(%p), pSizeOfData(%p)\n", This, pData, pSizeOfData);
+    TRACE("(%p) : pData(%p), pSizeOfData(%p)\n", This, pData, pSizeOfData);
 
     if (NULL == pData) {
         *pSizeOfData = This->baseShader.functionLength;




More information about the wine-cvs mailing list