Sign in
dawn
/
tint
/
5f6a185d0210fa6adf8bbcc4c2f4f3133e671001
/
.
/
test
/
out_of_order_decls
/
array
/
struct.wgsl.expected.glsl
blob: 2f4eab140b843b815148be5146bd9c293e7f7e14 [
file
] [
log
] [
blame
]
#version 310 es
precision mediump
float
;
struct
S
{
int
m
;
};
S A
[
4
]
=
S
[
4
](
S
(
0
),
S
(
0
),
S
(
0
),
S
(
0
));
void
f
()
{
S tint_symbol
=
S
(
1
);
A
[
0
]
=
tint_symbol
;
}
void
main
()
{
f
();
return
;
}