Sign in
skia
/
skia
/
be82005209c06840f0d5b13156d160a3e0efe702
/
.
/
tests
/
sksl
/
inliner
/
InlineWithInoutArgument.glsl
blob: 1989cf815f7c000ab319299acc4d186fc4c83bdc [
file
] [
log
] [
blame
]
out
vec4 sk_FragColor
;
uniform vec4 colorGreen
;
void
outParameter_vh4
(
inout vec4 x
)
{
x
*=
x
;
}
vec4 main
()
{
vec4 c
=
colorGreen
;
outParameter_vh4
(
c
);
return
c
;
}