Jeff Smith : d3drm: Get rid of the "partial stub" FIXMEs in the light creation functions.

Alexandre Julliard julliard at winehq.org
Tue Jun 16 17:08:50 CDT 2020


Module: wine
Branch: master
Commit: f56e409c2feb62056eb133e53fe398eadd0a503e
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=f56e409c2feb62056eb133e53fe398eadd0a503e

Author: Jeff Smith <whydoubt at gmail.com>
Date:   Tue Jun 16 22:47:39 2020 +0430

d3drm: Get rid of the "partial stub" FIXMEs in the light creation functions.

Signed-off-by: Jeff Smith <whydoubt at gmail.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/d3drm/d3drm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/d3drm/d3drm.c b/dlls/d3drm/d3drm.c
index 0b3af02a5a..8edcd7bd69 100644
--- a/dlls/d3drm/d3drm.c
+++ b/dlls/d3drm/d3drm.c
@@ -1549,7 +1549,7 @@ static HRESULT WINAPI d3drm3_CreateLight(IDirect3DRM3 *iface,
     struct d3drm_light *object;
     HRESULT hr;
 
-    FIXME("iface %p, type %#x, color 0x%08x, light %p partial stub!\n", iface, type, color, light);
+    TRACE("iface %p, type %#x, color 0x%08x, light %p.\n", iface, type, color, light);
 
     if (SUCCEEDED(hr = d3drm_light_create(&object, &d3drm->IDirect3DRM_iface)))
     {
@@ -1569,7 +1569,7 @@ static HRESULT WINAPI d3drm3_CreateLightRGB(IDirect3DRM3 *iface, D3DRMLIGHTTYPE
     struct d3drm_light *object;
     HRESULT hr;
 
-    FIXME("iface %p, type %#x, red %.8e, green %.8e, blue %.8e, light %p partial stub!\n",
+    TRACE("iface %p, type %#x, red %.8e, green %.8e, blue %.8e, light %p.\n",
             iface, type, red, green, blue, light);
 
     if (SUCCEEDED(hr = d3drm_light_create(&object, &d3drm->IDirect3DRM_iface)))




More information about the wine-cvs mailing list