File tree Expand file tree Collapse file tree 6 files changed +12
-7
lines changed Expand file tree Collapse file tree 6 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
- god_mode = true # requires F16_IN_F32
1
+ # TODO(https://github.com/gfx-rs/wgpu/issues/8154): enable only `F16_IN_F32` capability
2
+ god_mode = true
Original file line number Diff line number Diff line change 1
- god_mode = true # TODO: replace with finer `DUAL_SOURCE_BLENDING` capability
1
+ # TODO(https://github.com/gfx-rs/wgpu/issues/8154): enable only `DUAL_SOURCE_BLENDING` capability
2
+ god_mode = true
Original file line number Diff line number Diff line change 1
- god_mode = true # requires F16_IN_F32
1
+ # TODO(https://github.com/gfx-rs/wgpu/issues/8154): enable only `F16_IN_F32` capability
2
+ god_mode = true
2
3
targets = " METAL"
3
4
4
5
[msl ]
Original file line number Diff line number Diff line change 1
- god_mode = true # requires F16_IN_F32
1
+ # TODO(https://github.com/gfx-rs/wgpu/issues/8154): enable only `F16_IN_F32` capability
2
+ god_mode = true
2
3
3
4
[msl ]
4
5
fake_missing_bindings = false
Original file line number Diff line number Diff line change 1
- god_mode = true # requires F16_IN_F32
1
+ # TODO(https://github.com/gfx-rs/wgpu/issues/8154): enable only `F16_IN_F32` capability
2
+ god_mode = true
Original file line number Diff line number Diff line change @@ -1083,7 +1083,7 @@ macro_rules! check_extension_validation {
1083
1083
// Second check, for the expected validation error when the capability is not present
1084
1084
let error = naga:: valid:: Validator :: new( naga:: valid:: ValidationFlags :: all( ) , !caps)
1085
1085
. validate( & module)
1086
- . map_err( |e| e. into_inner( ) ) ; // TODO: Add tests for spans, too?
1086
+ . map_err( |e| e. into_inner( ) ) ; // TODO(https://github.com/gfx-rs/wgpu/issues/8153): Add tests for spans
1087
1087
#[ allow( clippy:: redundant_pattern_matching) ]
1088
1088
if !matches!( & error, $val_err_pat) {
1089
1089
eprintln!(
@@ -1163,7 +1163,7 @@ fn validation_error(
1163
1163
} ;
1164
1164
naga:: valid:: Validator :: new ( naga:: valid:: ValidationFlags :: all ( ) , caps)
1165
1165
. validate ( & module)
1166
- . map_err ( |e| e. into_inner ( ) ) // TODO: Add tests for spans, too?
1166
+ . map_err ( |e| e. into_inner ( ) ) // TODO(https://github.com/gfx-rs/wgpu/issues/8153): Add tests for spans
1167
1167
}
1168
1168
1169
1169
#[ test]
You can’t perform that action at this time.
0 commit comments