Sign in
dawn
/
dawn
/
55ceebec1e92b73401bb6da5f9c813dee6a9266f
/
.
/
test
/
tint
/
expressions
/
binary
/
bit-xor
/
scalar-scalar
/
u32.wgsl.expected.wgsl
blob: e4d519b208a10cc02099ada9646e27a984512ae8 [
file
] [
log
] [
blame
]
@compute
@workgroup_size
(
1
)
fn f
()
{
let
a
=
1u
;
let
b
=
2u
;
let
r
:
u32
=
(
a
^
b
);
}