Sign in
dawn
/
dawn
/
1efee19cc3ff7accd96be894b8b82b4cebdf295a
/
.
/
test
/
tint
/
var
/
initialization
/
function
/
nested_structs.wgsl.expected.ir.fxc.hlsl
blob: 3154c00d35d61f189bb6f662cbc377a877ccbc76 [
file
] [
log
] [
blame
]
struct
S1
{
int
i
;
};
struct
S2
{
S1 s1
;
};
struct
S3
{
S2 s2
;
};
RWByteAddressBuffer
tint_symbol
:
register
(
u0
);
int
f
(
S3 s3
)
{
return
s3
.
s2
.
s1
.
i
;
}
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
S3 v
=
{{{
int
(
42
)}}};
tint_symbol
.
Store
(
0u
,
asuint
(
f
(
v
)));
}