d3drm/tests: Test IDirect3DRM_CreateLight().

Signed-off-by: Jeff Smith <whydoubt@gmail.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Jeff Smith 2020-06-16 22:29:38 +04:30 committed by Alexandre Julliard
parent 12be3c43bd
commit 0132054999
1 changed files with 11 additions and 0 deletions

View File

@ -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);
}