Sign in
dawn
/
dawn
/
7c0693d9fe92244b3ae440c326d5c823ea71cb7e
/
.
/
test
/
expressions
/
splat
/
call
/
i32.wgsl.expected.msl
blob: 46579d29a72f3313fdfae756628e51bfc5b36ea0 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
int
get_i32
()
{
return
1
;
}
void
f
()
{
int2 v2
=
int2
(
get_i32
());
int3 v3
=
int3
(
get_i32
());
int4 v4
=
int4
(
get_i32
());
}