3 precision mediump float;
5 void fooConst(const in float f, const in highp float g) { }
7 void foo(in float f, in highp float g) { }
9 float retM ( float x) { return x; }
10 highp float retH (highp float x) { return x; }
11 float retHM(highp float x) { return x; }
12 highp float retMH( float x) { return x; }
18 fooConst(aM, bM); // must copy bM
19 fooConst(aH, bH); // must copy aH