Sign in
dawn
/
dawn
/
c14c8822b5e6a5e7fb00c2e15907c4c90ee47cdf
/
.
/
test
/
tint
/
ptr_ref
/
load
/
param
/
ptr.spvasm.expected.fxc.hlsl
blob: abdb81c0c06f2d04df137481607c42ffb62117fa [
file
] [
log
] [
blame
]
int
func
(
int
value
,
inout
int
pointer
)
{
const
int
x_9
=
pointer
;
return
(
value
+
x_9
);
}
void
main_1
()
{
int
i
=
0
;
i
=
123
;
const
int
x_19
=
i
;
const
int
x_18
=
func
(
x_19
,
i
);
return
;
}
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
main_1
();
return
;
}