You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
238 B

uniform half4 colorGreen;
// We don't inline functions with out parameters. (skia:11326)
inline void outParameter(inout half4 x) {
x *= x;
}
half4 main(float2 coords) {
half4 c = colorGreen;
outParameter(c);
return c;
}