Sign in
dawn
/
dawn
/
939ff868e89f8df8dcfdc0ac9622146fbaf75f81
/
.
/
test
/
expressions
/
zero_init
/
struct
/
scalar.wgsl.expected.hlsl
blob: 29925fffa1799cc641fc74194fc71c5b8d9bb5f9 [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
return
;
}
struct
S
{
int
i
;
uint
u
;
float
f
;
bool
b
;
};
void
f
()
{
S v
=
{
0
,
0u
,
0.0f
,
false
};
}