-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Texture builtins: move addressMode? to case (#4010)
addressMode is broken on many GPUs. Moving this from a subcase to a case lets us separate out those failures. I opted to put the parameters in minFilter, addresMode, offset order which means for some builtins I moved minFilter from subcase to case. This turned into a massive change because the queryStrings got too long. so had to change * addressModeX -> modeX * filter to filt * clamp-to-edge -> c * repeat -> r * mirror-repeat -> m * viewDimension -> dim * fragment -> f * compute -> c * vertex -> v Other option would be to move all the tests from `webgpu:shader,execution,expression,call,builtin` to `webgpu:texture` though I'm not sure that would be enough on it's own Note: this takes `webgpu:shader,execution,expression,call,builtin,*` from 21738 cases to 113546 cases
- Loading branch information
Showing
11 changed files
with
636 additions
and
461 deletions.
There are no files selected for viewing
155 changes: 72 additions & 83 deletions
155
src/webgpu/shader/execution/expression/call/builtin/textureGather.spec.ts
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.