-
Notifications
You must be signed in to change notification settings - Fork 275
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WGPU: Add new test and explanation for disabled test #5731
WGPU: Add new test and explanation for disabled test #5731
Conversation
/format |
🌈 Formatted, please merge the changes from this PR |
…ions Format code for PR shader-slang#5731
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
@@ -1,7 +1,7 @@ | |||
//TEST(compute):COMPARE_COMPUTE_EX:-slang -compute -shaderobj -output-using-type | |||
//TEST(compute, vulkan):COMPARE_COMPUTE_EX:-vk -compute -shaderobj -output-using-type | |||
//TEST(compute):COMPARE_COMPUTE:-slang -shaderobj -mtl -output-using-type | |||
// Slang-RHI/WGPU: Invalid bind group layout entry used #5612 | |||
// Not supported in WGSL: read-write storage texture with "rg16f" format |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the format is only problem for WGSL, can we change the format to one of formats WGSL supports?
Or maybe we can copy this test with a different format.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I can give it a shot.
There are some Slang-RHI issues related to storage textures I need to fix first though -- it currently doesn't create the bind group layout entry properly. I think I should set the access
field to read-write
, but I'm not quite sure how I should then get the required format information. I think I'll have to check in with Simon.
3060acb
to
c69b622
Compare
Needs another re-format. |
/format |
🌈 Formatted, please merge the changes from this PR |
…ions Format code for PR shader-slang#5731
See comments on #5612 for more details.
This closes #5612.