Sign in
dawn
/
tint
/
5af571bcbcf424fcc65430f304933c98612adbe1
/
.
/
test
/
expressions
/
binary
/
bit-or
/
scalar-scalar
/
u32.wgsl.expected.glsl
blob: 52ae9c0401b0677346211f78e79789e20b9d9bce [
file
] [
log
] [
blame
]
#version 310 es
precision mediump
float
;
layout
(
local_size_x
=
1
,
local_size_y
=
1
,
local_size_z
=
1
)
in
;
void
f
()
{
uint
r
=
(
1u
|
2u
);
return
;
}
void
main
()
{
f
();
}