Sign in
dawn
/
dawn
/
a3175f28f6d80e826eebe399b6b53430df6de6f2
/
.
/
test
/
tint
/
expressions
/
binary
/
bit-or
/
vec3-vec3
/
i32.wgsl.expected.glsl
blob: 7da641919e7e670f6a9cfc8996562d1ce3fe36fc [
file
] [
log
] [
blame
]
#version 310 es
void
f
()
{
ivec3 a
=
ivec3
(
1
,
2
,
3
);
ivec3 b
=
ivec3
(
4
,
5
,
6
);
ivec3 r
=
(
a
|
b
);
}
layout
(
local_size_x
=
1
,
local_size_y
=
1
,
local_size_z
=
1
)
in
;
void
main
()
{
f
();
return
;
}