552fcb9a1b
All internal usage has migrated to MakeFor..., this removes the old program kind, and updates some tests. Bug: skia:11813 Change-Id: I56733b071270e1ae3fab5d851e23acf6c02e3361 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/402536 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: John Stiles <johnstiles@google.com>
19 lines
593 B
Plaintext
19 lines
593 B
Plaintext
// Expect >= 7 errors (currently 9, due to double-reporting)
|
|
|
|
// Correct declaration (used in some test functions)
|
|
uniform shader s1;
|
|
uniform shader s2;
|
|
|
|
uniform float2 xy;
|
|
|
|
// Incorrect shader declarations (they must be uniform)
|
|
shader s3;
|
|
in shader s4;
|
|
|
|
// Various places that shaders should not be allowed:
|
|
half4 local() { shader s; return sample(s, xy); }
|
|
half4 parameter(shader s) { return sample(s, xy); }
|
|
shader returned() { return s1; }
|
|
half4 constructed() { return sample(shader(s1), xy); }
|
|
half4 expression(bool b) { return sample(b ? s1 : s2, xy); }
|