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.
snapshots::Targets::IR
ANALYSIS
1 parent 50b7128 commit c87717bCopy full SHA for c87717b
naga/tests/snapshots.rs
@@ -14,8 +14,12 @@ const BASE_DIR_OUT: &str = "tests/out";
14
bitflags::bitflags! {
15
#[derive(Clone, Copy)]
16
struct Targets: u32 {
17
+ /// A serialization of the `naga::Module`, in RON format.
18
const IR = 1;
19
+
20
+ /// A serialization of the `naga::valid::ModuleInfo`, in RON format.
21
const ANALYSIS = 1 << 1;
22
23
const SPIRV = 1 << 2;
24
const METAL = 1 << 3;
25
const GLSL = 1 << 4;
0 commit comments