vkd3d: More device interface versions and GetResourceAllocationInfo1().
Mainly to implement GetResourceAllocationInfo1()
, but we can introduce Device7
without much risk of apps failing on unimplemented methods, and doing that separately would conflict with GetResourceAllocationInfo1()
.
Merge request reports
Activity
+static HRESULT STDMETHODCALLTYPE d3d12_device_SetBackgroundProcessingMode(ID3D12Device6 *iface, + D3D12_BACKGROUND_PROCESSING_MODE mode, D3D12_MEASUREMENTS_ACTION action, HANDLE event, + BOOL *further_measurements_desired) +{ + FIXME("iface %p, mode %u, action %u, event %p, further_measurements_desired %p stub!\n", + iface, mode, action, event, further_measurements_desired); + + return E_NOTIMPL; +}
Can we please print "mode" and "action" with %#x?
added 6 commits
- 87231087 - vkd3d: Add ID3D12Device6 interface stub.
- e6b2f84c - vkd3d: Add ID3D12Device7 interface stubs.
- 0ca7aa98 - tests/d3d12: Test multiple descriptions in test_resource_allocation_info().
- 39791dee - vkd3d: Support multiple descriptions in GetResourceAllocationInfo().
- 48896d82 - tests/d3d12: Add tests for GetResourceAllocationInfo1().
- 35e7825f - vkd3d: Implement GetResourceAllocationInfo1().
Toggle commit listadded 30 commits
-
35e7825f...95e4222c - 24 commits from branch
wine:master
- 76fbbe98 - vkd3d: Add ID3D12Device6 interface stub.
- 92e19a7d - vkd3d: Add ID3D12Device7 interface stubs.
- 8d0331df - tests/d3d12: Test multiple descriptions in test_resource_allocation_info().
- 7e84421b - vkd3d: Support multiple descriptions in GetResourceAllocationInfo().
- 67b4ae65 - tests/d3d12: Add tests for GetResourceAllocationInfo1().
- eae4b7b4 - vkd3d: Implement GetResourceAllocationInfo1().
Toggle commit list-
35e7825f...95e4222c - 24 commits from branch
Please register or sign in to reply