Sign in
skia
/
skia
/
e8ab6e172d07e8d0f04e1fdf17f1202a4547359a
/
.
/
resources
/
sksl
/
shared
/
InterfaceBlockMultipleAnonymous.sksl
blob: 106f5cf36c6a879beec2ef0ffd04fc27855932c9 [
file
] [
log
] [
blame
]
layout
(
binding
=
1
)
uniform testBlockA
{
float2 x
;
};
layout
(
binding
=
2
)
uniform testBlockB
{
float2 y
;
};
void
main
()
{
sk_FragColor
=
half4
(
x
,
y
);
}