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

This commit is contained in:
Henri Verbeet 2014-01-28 10:09:22 +01:00 committed by Alexandre Julliard
parent 5e3cadf834
commit ce49a4ae63
2 changed files with 4 additions and 6 deletions

View File

@ -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;
}

View File

@ -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;
}