mirror of
https://github.com/reactos/wine.git
synced 2025-02-25 15:33:47 +00:00
d3d10/tests: Also try a WARP device in create_device().
This commit is contained in:
parent
5e3cadf834
commit
ce49a4ae63
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user