Sign in
dawn
/
dawn
/
ea0fda3e68e565d4f4610b4521f6cafe663bfa84
/
.
/
test
/
tint
/
ptr_sugar
/
struct.wgsl.expected.msl
blob: 1b6ebcd6ebd20bd111c63b443a9649eeeceee59b [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
struct
S
{
int
x
;
};
void
deref
()
{
S a
=
{};
int
b
=
a
.
x
;
a
.
x
=
42
;
}
void
no_deref
()
{
S a
=
{};
int
b
=
a
.
x
;
a
.
x
=
42
;
}
kernel
void
tint_symbol
()
{
deref
();
no_deref
();
return
;
}