Sign in
dawn
/
dawn
/
8fd4ef26f5c6ede28d09d79d52dbdde931d1a718
/
.
/
test
/
tint
/
access
/
let
/
vector.wgsl.expected.msl
blob: 13a9b75adc3732abbeb614290c0473d114c679ef [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
tint_symbol
()
{
float3
const
v
=
float3
(
1.0f
,
2.0f
,
3.0f
);
float
const
scalar
=
v
[
1
];
float2
const
swizzle2
=
float3
(
v
).
xz
;
float3
const
swizzle3
=
float3
(
v
).
xzy
;
return
;
}