Matteo Bruni : d3dx10/tests: Add a couple D3DX10CreateAsyncTextureInfoProcessor() parameter tests.

Alexandre Julliard julliard at winehq.org
Mon Jul 4 16:42:25 CDT 2022


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

Author: Matteo Bruni <mbruni at codeweavers.com>
Date:   Mon Jun  6 13:54:42 2022 +0200

d3dx10/tests: Add a couple D3DX10CreateAsyncTextureInfoProcessor() parameter tests.

Signed-off-by: Matteo Bruni <mbruni at codeweavers.com>

---

 dlls/d3dx10_43/tests/d3dx10.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/dlls/d3dx10_43/tests/d3dx10.c b/dlls/d3dx10_43/tests/d3dx10.c
index 1c28a62b700..b70dbb5b44f 100644
--- a/dlls/d3dx10_43/tests/d3dx10.c
+++ b/dlls/d3dx10_43/tests/d3dx10.c
@@ -1972,6 +1972,22 @@ static void test_D3DX10CreateAsyncTextureInfoProcessor(void)
     hr = D3DX10CreateAsyncTextureInfoProcessor(NULL, NULL);
     ok(hr == E_INVALIDARG, "Got unexpected hr %#x.\n", hr);
 
+    hr = D3DX10CreateAsyncTextureInfoProcessor(&info, NULL);
+    ok(hr == E_INVALIDARG, "Got unexpected hr %#x.\n", hr);
+
+    hr = D3DX10CreateAsyncTextureInfoProcessor(NULL, &dp);
+    ok(hr == S_OK, "Got unexpected hr %#x.\n", hr);
+
+    if (0)
+    {
+        /* Crashes on native. */
+        hr = ID3DX10DataProcessor_Process(dp, (void *)test_image[0].data, test_image[0].size);
+        ok(hr == S_OK, "Got unexpected hr %#x.\n", hr);
+    }
+
+    hr = ID3DX10DataProcessor_Destroy(dp);
+    ok(hr == S_OK, "Got unexpected hr %#x.\n", hr);
+
     hr = D3DX10CreateAsyncTextureInfoProcessor(&info, &dp);
     ok(hr == S_OK, "Got unexpected hr %#x.\n", hr);
 




More information about the wine-cvs mailing list