Sign in
dawn
/
dawn
/
57489928c6bfc468c8b45e76446eb4b403c012d2
/
.
/
test
/
expressions
/
bitcast
/
vector
/
u32-i32.wgsl.expected.glsl
blob: 0e98c529eca4997b0f79a966f527d3dc474582f3 [
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
()
{
uvec3 a
=
uvec3
(
1u
,
2u
,
3u
);
ivec3 b
=
ivec3
(
a
);
return
;
}
void
main
()
{
f
();
}