Commit 01320549 authored by Jeff Smith's avatar Jeff Smith Committed by Alexandre Julliard

d3drm/tests: Test IDirect3DRM_CreateLight().

parent 12be3c43
...@@ -2601,6 +2601,17 @@ static void test_Light(void) ...@@ -2601,6 +2601,17 @@ static void test_Light(void)
IDirect3DRMLight_Release(light); 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); IDirect3DRM_Release(d3drm);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment