mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 10:46:58 +00:00
[WINESYNC]d3dx9/tests: Fix a couple of ok() messages.
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 5a5beba6c4e3bc53790e3a31916d0aaf57dc19b8 by Matteo Bruni <mbruni@codeweavers.com>
This commit is contained in:
parent
f4fb1884a8
commit
4cecd21f9a
2 changed files with 3 additions and 3 deletions
|
@ -343,7 +343,7 @@ static void test_create_effect_and_pool(IDirect3DDevice9 *device)
|
|||
|
||||
hr = pool->lpVtbl->QueryInterface(pool, &IID_ID3DXEffectPool, (void **)&pool2);
|
||||
ok(hr == D3D_OK, "Got result %x, expected 0 (D3D_OK)\n", hr);
|
||||
ok(pool == pool2, "Release failed, got %p, expected %p\n", pool2, pool);
|
||||
ok(pool == pool2, "Got effect pool %p, expected %p.\n", pool2, pool);
|
||||
|
||||
count = pool2->lpVtbl->Release(pool2);
|
||||
ok(count == 1, "Release failed, got %u, expected 1\n", count);
|
||||
|
@ -359,7 +359,7 @@ static void test_create_effect_and_pool(IDirect3DDevice9 *device)
|
|||
|
||||
hr = effect->lpVtbl->GetPool(effect, &pool);
|
||||
ok(hr == D3D_OK, "GetPool failed, got %x, expected 0 (D3D_OK)\n", hr);
|
||||
ok(pool == pool2, "GetPool failed, got %p, expected %p\n", pool2, pool);
|
||||
ok(pool == pool2, "Got effect pool %p, expected %p.\n", pool2, pool);
|
||||
|
||||
count = pool2->lpVtbl->Release(pool2);
|
||||
ok(count == 2, "Release failed, got %u, expected 2\n", count);
|
||||
|
|
|
@ -33,4 +33,4 @@ files:
|
|||
include/d3dx9shape.h: sdk/include/dxsdk/d3dx9shape.h
|
||||
include/d3dx9tex.h: sdk/include/dxsdk/d3dx9tex.h
|
||||
tags:
|
||||
wine: 64b6bb4d4a54642434594f0df2afcd2e90b2a0a8
|
||||
wine: 5a5beba6c4e3bc53790e3a31916d0aaf57dc19b8
|
||||
|
|
Loading…
Reference in a new issue