Sign in
dawn
/
tint
/
d3e80fd36c67769ca0e8f4e6942de359e164476d
/
.
/
test
/
ptr_ref
/
access
/
matrix.wgsl.expected.hlsl
blob: 731d3d3fe8b91809a384217d0881b8bfe89f69a9 [
file
]
[
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
;
}