Sign in
dawn
/
dawn
/
26cba1cb3925a46e2be60656d2e407e10ce243a1
/
.
/
test
/
tint
/
ptr_ref
/
access
/
matrix.wgsl.expected.hlsl
blob: d9daaaa463bd0f3667fc85faa665ac3ec9bc312e [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
float3x3 m
=
float3x3
(
float3
(
1.0f
,
2.0f
,
3.0f
),
float3
(
4.0f
,
5.0f
,
6.0f
),
float3
(
7.0f
,
8.0f
,
9.0f
));
m
[
1
]
=
float3
(
5.0f
,
5.0f
,
5.0f
);
return
;
}