Sign in
dawn
/
tint
/
5af571bcbcf424fcc65430f304933c98612adbe1
/
.
/
test
/
expressions
/
bitcast
/
vector
/
i32-u32.wgsl.expected.glsl
blob: ecc1fd43f81e9b063e2e1df745b3fcaeec537f39 [
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
);
uvec3 b
=
uvec3
(
a
);
return
;
}
void
main
()
{
f
();
}