Commit fa690f6b authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

d3d11/tests: Drop redundant feature level check.

parent 69433d23
......@@ -3852,13 +3852,6 @@ static void test_multiple_render_targets(void)
return;
}
if (ID3D11Device_GetFeatureLevel(device) < D3D_FEATURE_LEVEL_9_3)
{
skip("Feature level 9_3 or higher is required.\n");
ID3D11Device_Release(device);
return;
}
hr = ID3D11Device_CreateInputLayout(device, layout_desc, sizeof(layout_desc) / sizeof(*layout_desc),
vs_code, sizeof(vs_code), &input_layout);
ok(SUCCEEDED(hr), "Failed to create input layout, 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