Skip to content
Snippets Groups Projects

vkd3d: More device interface versions and GetResourceAllocationInfo1().

Merged Conor McCarthy requested to merge cmccarthy/vkd3d:device7 into master

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

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • +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?

  • Conor McCarthy added 6 commits

    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().

    Compare with previous version

  • Henri Verbeet approved this merge request

    approved this merge request

  • Alexandre Julliard added 30 commits

    added 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().

    Compare with previous version

  • Alexandre Julliard approved this merge request

    approved this merge request

Please register or sign in to reply
Loading