Commit 149b1549 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

d3d9/tests: Fix caps check in texdepth_test().

parent 797c037b
......@@ -5331,9 +5331,9 @@ static void texdepth_test(void)
hr = IDirect3DDevice9_GetDeviceCaps(device, &caps);
ok(SUCCEEDED(hr), "Failed to get device caps, hr %#x.\n", hr);
if (caps.PixelShaderVersion < D3DPS_VERSION(1, 1))
if (caps.PixelShaderVersion < D3DPS_VERSION(1, 4))
{
skip("No ps_1_1 support, skipping tests.\n");
skip("No ps_1_4 support, skipping tests.\n");
IDirect3DDevice9_Release(device);
goto done;
}
......
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