Sign in
dawn
/
dawn
/
c5f2fe4c787379b0f1e1a400fbf6ddc8dbfdba96
/
.
/
test
/
expressions
/
binary
/
mul
/
vec3-vec3
/
i32.wgsl.expected.glsl
blob: bd7f2b7436092870b5a0643115f997caec4d4c91 [
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
()
{
ivec3 a
=
ivec3
(
1
,
2
,
3
);
ivec3 b
=
ivec3
(
4
,
5
,
6
);
ivec3 r
=
(
a
*
b
);
return
;
}
void
main
()
{
f
();
}