mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
libs/vkd3d: Implement d3d12_command_list_Reset().
This commit is contained in:
@@ -849,15 +849,15 @@ static void test_reset_command_allocator(void)
|
||||
ok(hr == S_OK, "Got unexpected hr %#x.\n", hr);
|
||||
|
||||
hr = ID3D12GraphicsCommandList_Reset(command_list, command_allocator, NULL);
|
||||
todo(SUCCEEDED(hr), "Resetting Command list failed, hr %#x.\n", hr);
|
||||
ok(SUCCEEDED(hr), "Resetting Command list failed, hr %#x.\n", hr);
|
||||
|
||||
hr = ID3D12CommandAllocator_Reset(command_allocator);
|
||||
todo(hr == E_FAIL, "Got unexpected hr %#x.\n", hr);
|
||||
ok(hr == E_FAIL, "Got unexpected hr %#x.\n", hr);
|
||||
|
||||
hr = ID3D12GraphicsCommandList_Close(command_list);
|
||||
todo(SUCCEEDED(hr), "Close failed, hr %#x.\n", hr);
|
||||
ok(SUCCEEDED(hr), "Close failed, hr %#x.\n", hr);
|
||||
hr = ID3D12GraphicsCommandList_Reset(command_list, command_allocator, NULL);
|
||||
todo(SUCCEEDED(hr), "Resetting command list failed, hr %#x.\n", hr);
|
||||
ok(SUCCEEDED(hr), "Resetting command list failed, hr %#x.\n", hr);
|
||||
|
||||
ID3D12GraphicsCommandList_Release(command_list);
|
||||
ID3D12CommandAllocator_Release(command_allocator);
|
||||
|
Reference in New Issue
Block a user