vkd3d-shader/tpf: Convert some of the semantic names to system values names when in compatibility mode.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com
Merge request reports
Activity
- Resolved by Nikolay Sivov
- Resolved by Nikolay Sivov
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?
added 17 commits
-
93bf0271...c9277265 - 16 commits from branch
wine:master
- 3915eba2 - vkd3d-shader/tpf: Return usage for all known semantic names.
-
93bf0271...c9277265 - 16 commits from branch
assigned to @nsivov
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.
Create a bug report for this https://bugs.winehq.org/show_bug.cgi?id=55719, to make it easier to retest.
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...
-
3915eba2...05d516bb - 45 commits from branch
- 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.
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.
-
dcb456c2...38a73097 - 9 commits from branch
- Resolved by Nikolay Sivov
needs_compat_mapping is really just (strncmp(name, "sv_", 3)), right?