Commit 10115930 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

d3d9/tests: Skip test_vshader_input() if PS 3.0 isn't supported.

parent 2568fd2e
......@@ -7828,6 +7828,12 @@ static void test_vshader_input(void)
IDirect3DDevice9_Release(device);
goto done;
}
if (caps.PixelShaderVersion < D3DPS_VERSION(3, 0))
{
skip("No ps_3_0 support, skipping tests.\n");
IDirect3DDevice9_Release(device);
goto done;
}
hr = IDirect3D9_GetAdapterIdentifier(d3d, D3DADAPTER_DEFAULT, 0, &identifier);
ok(SUCCEEDED(hr), "Failed to get adapter identifier, hr %#x.\n", hr);
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