[PATCH 4/5] d3drm/tests: Test IDirect3DRM_CreateLight().

Henri Verbeet hverbeet at codeweavers.com
Tue Jun 16 12:59:38 CDT 2020


From: Jeff Smith <whydoubt at gmail.com>

Signed-off-by: Jeff Smith <whydoubt at gmail.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
---
This supersedes patch 187064.

 dlls/d3drm/tests/d3drm.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/dlls/d3drm/tests/d3drm.c b/dlls/d3drm/tests/d3drm.c
index 87ad50a39db..d854ebcc56d 100644
--- a/dlls/d3drm/tests/d3drm.c
+++ b/dlls/d3drm/tests/d3drm.c
@@ -2601,6 +2601,17 @@ static void test_Light(void)
 
     IDirect3DRMLight_Release(light);
 
+    hr = IDirect3DRM_CreateLight(d3drm, D3DRMLIGHT_SPOT, 0x00c0c0c0, &light);
+    ok(hr == D3DRM_OK, "Got unexpected hr %#x.\n", hr);
+
+    type = IDirect3DRMLight_GetType(light);
+    ok(type == D3DRMLIGHT_SPOT, "Got unexpected type %#x.\n", type);
+
+    color = IDirect3DRMLight_GetColor(light);
+    ok(color == 0xffc0c0c0, "Got unexpected color 0x%08x.\n", color);
+
+    IDirect3DRMLight_Release(light);
+
     IDirect3DRM_Release(d3drm);
 }
 
-- 
2.20.1




More information about the wine-devel mailing list