Sign in
dawn
/
tint
/
3e80ae68ee4baa5a53d01bf5eb6795b416dc5bd5
/
.
/
test
/
expressions
/
binary
/
add
/
vec3-vec3
/
i32.wgsl.expected.glsl
blob: d3c9d1d6c7e3cb9d264dd70ddf58df2ec639df29 [
file
] [
log
] [
blame
]
#version 310 es
precision mediump
float
;
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
;
}