Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / resources / sksl / spirv / LayoutOutOfOrder.sksl
1 struct Bad {
2     int x;
3     layout(offset = 0) int y;
4 } bad;
5
6 void main() {
7     bad.x = 5;
8     sk_FragColor.r = half(bad.x);
9 }