Skip to content
Snippets Groups Projects

vkd3d-shader/tpf: Convert some of the semantic names to system values names when in compatibility mode.

Merged Nikolay Sivov requested to merge nsivov/vkd3d:sm4_sign into master

Signed-off-by: Nikolay Sivov nsivov@codeweavers.com

Merge request reports

Checking pipeline status.

Merged by Alexandre JulliardAlexandre Julliard 1 year ago (Oct 19, 2023 9:22pm UTC)

Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Francisco Casas
  • Minor, but since I noticed it: 2/2 has a typo in the commit message, "exlicitly" instead of "explicitly".

  • Incidentally, mapping outputs in shader_sm4_read_param() (or the parser in general) is historic, and probably not the ideal place these days. Note that we map these back to "o" registers in shader_dump_register() again; the more reasonable thing to do would probably be to do this mapping before/while generating output that needs it, but as far as I can tell we don't currently have any. I.e., we could probably just get rid of the mapping code.

    Note that this MR causes CI test failures in tests/vkd3d_shader_api.

    • Resolved by Nikolay Sivov

      Did you actually find a native shader that has "color" in the output signature? According to my tests native will actually output "SV_Target" in this case.

      That probably implies we should do the same, arguably even fixing that bug before we apply 2/2.

    • Resolved by Nikolay Sivov

      That probably implies we should do the same, arguably even fixing that bug before we apply 2/2.

      Oh, never mind, we already have code to handle that. Sorry for the noise.

      But yeah, question remains, do we actually want 1/2?

  • Nikolay Sivov added 17 commits

    added 17 commits

    Compare with previous version

  • Nikolay Sivov resolved all threads

    resolved all threads

  • assigned to @nsivov

  • Author Developer

    Apparently this should be conditional to backwards compatibility mode, without it on Windows signatures are not modified. I didn't notice it at first, because pixel shader already required it for tex2D().

    From what I can tell, for vertex shaders compat mode maps POSITION -> SV_Position for outputs, and for pixel shaders POSITION -> SV_Position for inputs, and COLORN -> SV_TargetN for outputs.

  • Nikolay Sivov marked this merge request as draft

    marked this merge request as draft

  • Author Developer

    Create a bug report for this https://bugs.winehq.org/show_bug.cgi?id=55719, to make it easier to retest.

  • Nikolay Sivov added 46 commits

    added 46 commits

    • 3915eba2...05d516bb - 45 commits from branch wine:master
    • dcb456c2 - vkd3d-shader/tpf: Convert some of the semantic names to system values names...

    Compare with previous version

  • Nikolay Sivov marked this merge request as ready

    marked this merge request as ready

  • Nikolay Sivov changed title from Draft: vkd3d-shader/tpf: Handle "COLOR" semantic the same way as "sv_target" in the parser. to vkd3d-shader/tpf: Convert some of the semantic names to system values names when in compatibility mode.

    changed title from Draft: vkd3d-shader/tpf: Handle "COLOR" semantic the same way as "sv_target" in the parser. to vkd3d-shader/tpf: Convert some of the semantic names to system values names when in compatibility mode.

    • Resolved by Nikolay Sivov
      +    /**
      +     *  Causes compiler to convert SM1-3 semantics to corresponding System Value semantics,
      +     *  when compiled for SM4+ targets.

      It may be worth pointing out that this option applies to HLSL sources.

      +        "  --semantic-compat-map Enable semantic mapping compatibility mode to use SM4+ system values\n"
      +        "                        instead of SM1-3 style semantic names.\n"

      Likewise.

      +    if (compat_options)
      +        add_compile_option(options, VKD3D_SHADER_COMPILE_OPTION_BACKWARD_COMPATIBILITY, compat_options);

      I think this requires bumping MAX_COMPILE_OPTIONS. We're probably also starting to reach the point where it makes more sense to dynamically allocate the "compile_options" array though.

  • Nikolay Sivov added 11 commits

    added 11 commits

    • dcb456c2...38a73097 - 9 commits from branch wine:master
    • ca25fafa - vkd3d-shader/tpf: Convert some of the semantic names to system values names...
    • f0ac1208 - programs/vkd3d-compiler: Dynamically allocate options array.

    Compare with previous version

  • Nikolay Sivov added 2 commits

    added 2 commits

    • 27a66e58 - vkd3d-shader/tpf: Convert some of the semantic names to system values names...
    • 1e7e3b89 - programs/vkd3d-compiler: Dynamically allocate options array.

    Compare with previous version

  • Elizabeth Figura approved this merge request

    approved this merge request

  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Please register or sign in to reply
    Loading