Sign in
skia
/
skia
/
1d910efd245866af7dd9285419a179312ba69b47
/
.
/
resources
/
sksl
/
shared
/
Offset.sksl
blob: 4c6558dfc8a6fd3d5144ee75ebb7c6da067b6de0 [
file
] [
log
] [
blame
]
struct
Test
{
layout
(
offset
=
0
)
int
x
;
layout
(
offset
=
4
)
int
y
;
int
z
;
}
test
;
void
main
()
{
Test
t
;
t
.
x
=
0
;
sk_FragColor
.
r
=
half
(
t
.
x
);
}