Commit ce49a4ae authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

d3d10/tests: Also try a WARP device in create_device().

parent 5e3cadf8
......@@ -27,12 +27,11 @@ static ID3D10Device *create_device(void)
if (SUCCEEDED(D3D10CreateDevice(NULL, D3D10_DRIVER_TYPE_HARDWARE, NULL, 0, D3D10_SDK_VERSION, &device)))
return device;
trace("Failed to create a HW device, trying REF\n");
if (SUCCEEDED(D3D10CreateDevice(NULL, D3D10_DRIVER_TYPE_WARP, NULL, 0, D3D10_SDK_VERSION, &device)))
return device;
if (SUCCEEDED(D3D10CreateDevice(NULL, D3D10_DRIVER_TYPE_REFERENCE, NULL, 0, D3D10_SDK_VERSION, &device)))
return device;
trace("Failed to create a device, returning NULL\n");
return NULL;
}
......
......@@ -29,12 +29,11 @@ static ID3D10Device *create_device(void)
if (SUCCEEDED(D3D10CreateDevice(NULL, D3D10_DRIVER_TYPE_HARDWARE, NULL, 0, D3D10_SDK_VERSION, &device)))
return device;
trace("Failed to create a HW device, trying REF\n");
if (SUCCEEDED(D3D10CreateDevice(NULL, D3D10_DRIVER_TYPE_WARP, NULL, 0, D3D10_SDK_VERSION, &device)))
return device;
if (SUCCEEDED(D3D10CreateDevice(NULL, D3D10_DRIVER_TYPE_REFERENCE, NULL, 0, D3D10_SDK_VERSION, &device)))
return device;
trace("Failed to create a device, returning NULL\n");
return NULL;
}
......
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