Sign in
dawn
/
tint
/
c6d967b4dd3fd313af5e6c6e906eeb9a9e3603cf
/
.
/
test
/
expressions
/
zero_init
/
struct
/
array.wgsl.expected.glsl
blob: cce4114bf6256b3274f113f9cca8ad52b8024d0e [
file
] [
log
] [
blame
]
#version 310 es
precision mediump
float
;
layout
(
local_size_x
=
1
,
local_size_y
=
1
,
local_size_z
=
1
)
in
;
void
unused_entry_point
()
{
return
;
}
struct
S
{
float
a
[
4
];
};
void
f
()
{
S v
=
S
(
float
[
4
](
0.0f
,
0.0f
,
0.0f
,
0.0f
));
}