Sign in
dawn
/
dawn
/
refs/heads/chromium/5995
/
.
/
test
/
tint
/
ptr_ref
/
load
/
param
/
private
/
vec2_f32_in_mat2x2.wgsl.expected.dxc.hlsl
blob: eb92433a71a19e86dd2aeb9cf6605c46b3fc2cea [
file
] [
log
] [
blame
] [
edit
]
float2 func
(
inout float2 pointer
)
{
return
pointer
;
}
static
float2x2 P
=
float2x2
(
0.0f
,
0.0f
,
0.0f
,
0.0f
);
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
const
float2 r
=
func
(
P
[
1
]);
return
;
}