DO NOT REVIEW YET: Proper fix for COMPARE_HLSL_RENDER and WGPU API #5323
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #5276
The issue turned out to be related to the use of
COMPARE_HLSL_RENDER
keyword in the file,tests/bugs/texture2d-gather.hlsl
.The fact that the file has an extension, ".hlsl", was unrelated to the issue.
The document describes what
COMPARE_HLSL_RENDER
does as following,Basically, it compiles the given shader with DXC compiler and generate an output image.
And then it compiles with each and every render API and generate an output image and compare it to the output from DXC.
The problem is on how the input arguments are generated when rendering for metal and wgpu.
The command-line argument for rendering with DXC is, as an example,
And the command-line argument for rendering with WGPU API is,
The first set of arguments conflict in a way that "-wgpu" instructs to use Tint as the renderer at the same time, it tells to use DXC compile with the next argument, "-hlsl". In this case, "-wgpu" should be ignored.
The second set is kind of O.K, because "-slang" and "-wgpu" don't conflict. "-slang" instructs to treat the input as slang shader and "-wgpu" instructs to use WGPU as the output render API.