[D3D 34] Remove useless FIXMEs

Christian Costa titan.costa at wanadoo.fr
Sun Dec 22 10:13:29 CST 2002


Modified files :
dlls/ddraw/d3ddevice/main.c

Changelog :
Remove useless FIXMEs since there is nothing to do in BeginScene and 
EndScene.

Christian Costa   titan.costa at wanadoo.fr

-------------- next part --------------
--- ../../../../winebase/wine/dlls/ddraw/d3ddevice/main.c	Sun Dec 15 15:52:23 2002
+++ d3ddevice/main.c	Sun Dec 22 16:33:38 2002
@@ -40,7 +40,7 @@
                                                    LPVOID* obp)
 {
     ICOM_THIS_FROM(IDirect3DDeviceImpl, IDirect3DDevice7, iface);
-    TRACE("(%p/%p)->(%s,%p): stub!\n", This, iface, debugstr_guid(riid), obp);
+    TRACE("(%p/%p)->(%s,%p)\n", This, iface, debugstr_guid(riid), obp);
 
     *obp = NULL;
 
@@ -128,7 +128,8 @@
 Main_IDirect3DDeviceImpl_7_3T_2T_1T_BeginScene(LPDIRECT3DDEVICE7 iface)
 {
     ICOM_THIS_FROM(IDirect3DDeviceImpl, IDirect3DDevice7, iface);
-    FIXME("(%p/%p)->(): stub!\n", This, iface);
+    TRACE("(%p/%p)->()\n", This, iface);
+    /* Nothing to do */
     return DD_OK;
 }
 
@@ -136,7 +137,8 @@
 Main_IDirect3DDeviceImpl_7_3T_2T_1T_EndScene(LPDIRECT3DDEVICE7 iface)
 {
     ICOM_THIS_FROM(IDirect3DDeviceImpl, IDirect3DDevice7, iface);
-    FIXME("(%p/%p)->(): stub!\n", This, iface);
+    TRACE("(%p/%p)->()\n", This, iface);
+    /* Nothing to do */
     return DD_OK;
 }
 
@@ -660,7 +662,7 @@
     ICOM_THIS_FROM(IDirect3DDeviceImpl, IDirect3DDevice3, iface);
     IDirect3DViewportImpl *res = NULL;
 
-    TRACE("(%p/%p)->(%p,%p,%08lx): stub!\n", This, iface, lpDirect3DViewport3, lplpDirect3DViewport3, dwFlags);
+    TRACE("(%p/%p)->(%p,%p,%08lx)\n", This, iface, lpDirect3DViewport3, lplpDirect3DViewport3, dwFlags);
     
     switch (dwFlags) {
         case D3DNEXT_NEXT: {


More information about the wine-patches mailing list