We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d15f07e commit cd8b15bCopy full SHA for cd8b15b
src/tint/cmd/fuzz/ir/dis/main.cc
@@ -273,6 +273,7 @@ bool EmitWGSL(const Options& options, tint::core::ir::Module& module) {
273
}
274
275
tint::wgsl::writer::Options writer_options;
276
+ writer_options.allowed_features = tint::wgsl::AllowedFeatures::Everything();
277
auto output = tint::wgsl::writer::WgslFromIR(module, writer_options);
278
if (output != tint::Success) {
279
std::cerr << "Failed to convert IR to WGSL Program: " << output.Failure() << "\n";
0 commit comments