skia2/resources/sksl/inliner/InlinerCanBeDisabled.sksl
John Stiles bfc9be0f77 Migrate SkSL test inputs to the resources/ directory.
This will allow us to load these inputs for unit testing in `dm`.

Change-Id: Id256ba7c30d3ec94b98048e47af44cf9efe580d5
Bug: skia:11009
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/357282
Commit-Queue: John Stiles <johnstiles@google.com>
Auto-Submit: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2021-01-22 18:57:29 +00:00

33 lines
692 B
Plaintext

/*#pragma settings NoInline*/
uniform half4 color;
half singleuse() {
return 1.25;
}
half add(half a, half b) {
half c = a + b;
return c;
}
half mul(half a, half b) {
return a * b;
}
half fma(half a, half b, half c) {
return add(mul(a, b), c);
}
void main() {
// Functions used multiple times:
sk_FragColor = fma(color.x, color.y, color.z).xxxx;
// Functions used only once:
sk_FragColor *= singleuse();
// Intrinsic functions:
sk_FragColor *= blend_src_in(color.xxyy, color.zzww);
sk_FragColor *= blend_dst_in(color.xxyy, color.zzww);
sk_FragColor *= blend_hue(color, color.wwww);
sk_FragColor *= blend_hue(color, color.wzyx);
}