Sign in
dawn
/
tint
/
refs/heads/chromium/4857
/
.
/
test
/
expressions
/
binary
/
bit-or
/
scalar-scalar
/
u32.wgsl.expected.glsl
blob: 38b5d665a5799058f24114b83058e56cdf6fa148 [
file
] [
log
] [
blame
] [
edit
]
#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
();
}