Skip to content
Snippets Groups Projects

vkd3d-shader/dxil: Implement constant buffer loads.

Merged Conor McCarthy requested to merge cmccarthy/vkd3d:dxil_cbuffer into master
1 unresolved thread

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
2593 if (!(d = sm6_parser_get_descriptor(sm6, type, id, operands[2])))
2594 {
2595 WARN("Failed to find resource type %#x, id %#x.\n", type, id);
2596 vkd3d_shader_parser_error(&sm6->p, VKD3D_SHADER_ERROR_DXIL_INVALID_OPERAND,
2597 "Descriptor for resource type %#x, id %#x was not found.", type, id);
2598 return;
2599 }
2600
2601 dst = sm6_parser_get_current_value(sm6);
2602 dst->value_type = VALUE_TYPE_HANDLE;
2603 dst->u.handle.d = d;
2604
2605 reg = &dst->u.handle.reg;
2606 /* Set idx_count to 3 for use with load/store instructions.
2607 * TODO: set register type from resource type when other types are supported. */
2608 vsir_register_init(reg, VKD3DSPR_CONSTBUFFER, VKD3D_DATA_FLOAT, 3);
  • Comment on lines +2606 to +2608

    I'm not sure I understand why you're setting 3 here. Also TPF uses 2 indices, and you're not initialising the third one. Could you explain more in detail?

  • Author Developer

    This register is copied and used for cbuffer loads, where the third index is set. It's not used anywhere else. For this commit the comment should only say loads, so I fixed that.

  • The part that keeps me a bit hesitant is that the generated VKD3DSPR_CONSTBUFFER register is being different than TPF, while I would strive for VSIR to be as uniform as possible across different backends and frontends. In my understanding, for TPF the two registers are the constant buffer descriptor id and the index inside the constant buffer itself. What does the additional index in DXIL mean?

  • Author Developer

    In TPF a VKD3DSPR_CONSTBUFFER source register has range id, descriptor index, and buffer offset. DXIL has no registers, so this info is split in two. CreateHandle supplies the range id and descriptor index, while CBufferLoadLegacy supplies the offset. So we build the register in two separate steps.

  • Ah, I think I understand now. I guess that's what does the change for TPF, right? https://gitlab.winehq.org/wine/vkd3d/-/blob/master/libs/vkd3d-shader/tpf.c#L1916

  • Author Developer

    Yes for SM <= 5.0

  • Please register or sign in to reply
  • Giovanni Mascellani
  • Conor McCarthy added 4 commits

    added 4 commits

    • b4e4cf0a - vkd3d-shader/dxil: Implement DX instruction CreateHandle.
    • 914717f8 - vkd3d-shader/dxil: Implement DX instruction CBufferLoadLegacy.
    • c2efb374 - vkd3d-shader/spirv: Support scalar swizzle of vector SSA registers.
    • a78035bd - vkd3d-shader/dxil: Implement the DXIL EXTRACTVAL instruction.

    Compare with previous version

  • Conor McCarthy added 4 commits

    added 4 commits

    • 79746e73 - vkd3d-shader/dxil: Implement DX instruction CreateHandle.
    • b3d1e179 - vkd3d-shader/dxil: Implement DX instruction CBufferLoadLegacy.
    • c02adb99 - vkd3d-shader/spirv: Support scalar swizzle of vector SSA registers.
    • 3289565a - vkd3d-shader/dxil: Implement the DXIL EXTRACTVAL instruction.

    Compare with previous version

  • Giovanni Mascellani approved this merge request

    approved this merge request

  • Henri Verbeet approved this merge request

    approved this merge request

  • Alexandre Julliard approved this merge request

    approved this merge request

  • Please register or sign in to reply
    Loading