• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1uniform half4 colorGreen;
2
3inline half parameterWrite(half x) {
4    x *= x;
5    return x;
6}
7
8half4 main(float2 coords) {
9    half4 c = colorGreen;
10    c.g = parameterWrite(c.g);
11    return c;
12}
13