0c9d888748
Previously, these tests were never actually executed, only read during code review. They are now properly tested for correctness whenever dm is run. Non-ES2 compliant statements (do/while/switch) are unfortunately excluded here, as they are not compatible with Runtime Effects yet. Change-Id: I965c782baad6f8dd3961a400ae791fb2c1f844d3 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/389296 Auto-Submit: John Stiles <johnstiles@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com> Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
28 lines
519 B
Plaintext
28 lines
519 B
Plaintext
uniform half4 colorGreen;
|
|
|
|
noinline half4 multiplyByAlpha(half4 x) {
|
|
return x * x.aaaa;
|
|
}
|
|
|
|
noinline half add(half a, half b) {
|
|
half c = a + b;
|
|
return c;
|
|
}
|
|
|
|
noinline half mul(half a, half b) {
|
|
return a * b;
|
|
}
|
|
|
|
noinline half fma(half a, half b, half c) {
|
|
return add(mul(a, b), c);
|
|
}
|
|
|
|
half4 main() {
|
|
// Functions used multiple times:
|
|
half4 result = fma(colorGreen.a, colorGreen.g, colorGreen.r).0x0x;
|
|
// Functions used only once:
|
|
result = multiplyByAlpha(result);
|
|
|
|
return result;
|
|
}
|