• Home
  • Raw
  • Download

Lines Matching refs:func

23 			float func (float a)
30 out0 = func(in0);
47 float func (vec2 a)
54 out0 = func(in0);
71 float func (vec3 a)
78 out0 = func(in0);
95 float func (vec4 a)
102 out0 = func(in0);
119 float func (mat2 a)
126 out0 = func(in0);
143 float func (mat3 a)
150 out0 = func(in0);
167 float func (mat4 a)
174 out0 = func(in0);
192 int func (int a)
200 out0 = func(in0);
218 int func (ivec2 a)
226 out0 = func(in0);
244 int func (ivec3 a)
252 out0 = func(in0);
270 int func (ivec4 a)
278 out0 = func(in0);
295 bool func (bool a)
303 out0 = func(in0);
320 bool func (bvec2 a)
328 out0 = func(in0);
345 bool func (bvec3 a)
353 out0 = func(in0);
370 bool func (bvec4 a)
378 out0 = func(in0);
395 mat2 func (mat2 a)
403 out0 = func(in0);
421 mat3 func (mat3 a)
429 out0 = func(in0);
447 mat4 func (mat4 a)
455 out0 = func(in0);
474 float func (Pos p)
482 out0 = func(p);
501 Pos func (Pos p)
509 p = func(p);
530 Line func (Pos p)
543 Line line = func(p);
593 float func (in float a)
603 float g = func(f);
622 void func (out float a)
631 func(f);
650 void func (inout float a)
659 func(f);
678 float func (in lowp float a)
688 float g = func(f);
707 void func (out lowp float a)
716 func(f);
735 void func (inout lowp float a)
744 func(f);
763 float func (in highp float a)
773 float g = func(f);
792 void func (out highp float a)
801 func(f);
820 void func (inout highp float a)
829 func(f);
848 float func (const float a)
858 float g = func(f);
877 float func (const in float a)
887 float g = func(f);
906 int func (in int a)
916 int g = func(f);
935 void func (out int a)
944 func(f);
963 void func (inout int a)
972 func(f);
991 int func (in lowp int a)
1001 int g = func(f);
1020 void func (out lowp int a)
1029 func(f);
1048 void func (inout lowp int a)
1057 func(f);
1076 int func (in highp int a)
1086 int g = func(f);
1105 void func (out highp int a)
1114 func(f);
1133 void func (inout highp int a)
1142 func(f);
1161 int func (const int a)
1171 int g = func(f);
1190 int func (const in int a)
1200 int g = func(f);
1218 bool func (in bool a)
1228 bool g = func(f);
1246 void func (out bool a)
1255 func(f);
1273 void func (inout bool a)
1282 func(f);
1304 float func ();
1308 out0 = func() * in0;
1312 float func (void)
1330 float func (float f);
1334 out0 = func(in0);
1338 float func (in float f)
1356 float func (float f);
1360 out0 = func(in0);
1364 float func (mediump float f)
1387 float func (float a)
1392 int func (int a)
1399 out0 = func(in0) * float(func(-1));
1417 float func (float a) { return -a; }
1418 vec2 func (vec2 a) { return a.yx; }
1419 vec3 func (vec3 a) { return a.xxx; }
1420 vec4 func (vec4 a) { return a.wwww; }
1424 out0 = func(func(func(func(vec4(in0)).xyz).xy).x);
1442 int func (int a) { return -a; }
1443 ivec2 func (ivec2 a) { return a.yx; }
1444 ivec3 func (ivec3 a) { return a.xxx; }
1445 ivec4 func (ivec4 a) { return a.wwww; }
1450 out0 = func(func(func(func(ivec4(in0)).xyz).xy).x);
1467 bool func (bool a) { return !a; }
1468 bvec2 func (bvec2 a) { return a.yx; }
1469 bvec3 func (bvec3 a) { return a.xxx; }
1470 bvec4 func (bvec4 a) { return a.wwww; }
1475 out0 = func(func(func(func(bvec4(in0)).xyz).xy).x);
1493 float func (float a) { return -a; }
1494 vec2 func (vec2 a) { return a.yx; }
1495 vec3 func (vec3 a) { return a.xxx; }
1496 vec4 func (vec4 a) { return a.wwww; }
1497 int func (int a) { return -a; }
1498 ivec2 func (ivec2 a) { return a.yx; }
1499 ivec3 func (ivec3 a) { return a.xxx; }
1500 ivec4 func (ivec4 a) { return a.wwww; }
1501 bool func (bool a) { return !a; }
1502 bvec2 func (bvec2 a) { return a.yx; }
1503 bvec3 func (bvec3 a) { return a.xxx; }
1504 bvec4 func (bvec4 a) { return a.wwww; }
1509 if (func(func(bvec4(false)).x))
1510 out0 = func(in0) * float(func(-1));
1512 out0 = float(func(func(ivec4(func(func(func(vec4(0.5)).xyz).xy).xxxx)).xy).x);
1533 float func (float a) { return -a; }
1534 float func (float a[4]) { return a[0] + a[3]; }
1535 vec2 func (vec2 a) { return a.yx; }
1536 vec3 func (vec3 a) { return a.xxx; }
1537 vec4 func (vec4 a) { return a.wwww; }
1538 vec4 func (vec4 a[4]) { return a[1] + a[2]; }
1539 int func (int a) { return -a; }
1540 ivec2 func (ivec2 a) { return a.yx; }
1541 ivec3 func (ivec3 a) { return a.xxx; }
1542 ivec4 func (ivec4 a) { return a.wwww; }
1543 bool func (bool a) { return !a; }
1544 bvec2 func (bvec2 a) { return a.yx; }
1545 bvec3 func (bvec3 a) { return a.xxx; }
1546 bvec4 func (bvec4 a) { return a.wwww; }
1547 Pos func (Pos a) { return a; }
1548 Line func (Line a) { return Line(a.end, a.start); }
1555 out0 = func(arr) + func(arr2).x;
1556 if (func(func(bvec4(false)).x))
1557 out0 = func(in0) * float(func(-1));
1559 out0 = float(func(func(ivec4(func(func(func(vec4(0.5)).xyz).xy).xxxx)).xy).x);
1576 float func (float a)
1581 float func (float a, float b)
1588 out0 = func(in0) * func(-0.5, -2.0);
1650 float func (float f[3])
1655 float func (float f[4])
1667 out0 = func(x);
1688 float func (in float a[4])
1703 float f = func(arr);
1721 float func (in float a[4])
1737 float f = func(arr);
1756 int func (in int a[4])
1772 int f = func(arr);
1791 int func (in int a[4])
1808 int f = func(arr);
1827 bool func (in bool a[4])
1843 func(arr);
1861 bool func (in bool a[4])
1878 func(arr);
1939 float func (in float a[4], in float b[4])
1950 out0 = in0 * func(arr, arr);
1981 float func (in float a[4], in float b[4])
1993 out0 = in0 * func(arr, arr);
2024 float func (inout float a[4], inout float b[4])
2034 float m = func(arr, arr); // returns -1.0
2067 float func (in float a[4], in float b[4])
2078 float m = func(arr, arr); // returns -1.0
2125 float func (float a)
2135 out0 = func(in0);
2152 float func (float a)
2162 out0 = func(in0);
2179 float func (float a)
2191 out0 = func(in0);
2208 float func (float a)
2218 out0 = func(in0);
2235 float func (float a)
2251 out0 = func(in0);
2268 float func (float a)
2278 out0 = func(in0);
2295 float func (float a)
2309 out0 = func(in0);
2326 float func (float a)
2340 out0 = func(in0);
2357 float func (float a)
2377 out0 = func(in0);
2396 float func (float a)
2421 out0 = func(in0);
2438 float func (float a)
2460 out0 = func(in0);
2483 float func (float a, vec3 b, vec2 c, vec2 d, vec4 e)
2491 out0 = func(in0.y, in0.xzw, in0.wz, in0.yx, in0);
2511 int func (int a, ivec3 b, ivec2 c, ivec2 d, ivec4 e)
2519 out0 = func(in0.y, in0.xzw, in0.wz, in0.yx, in0);
2536 int func (float a, int b, bool c, int d)
2549 out0 = func((v0 += 1.0), v1++, (v0 > 1.5), v1);
2574 int func (float a, int b, bool c, int d)
2585 out0 = func(float(g = in0), modG(2), --g > 0, g);
2599 // statement has been executed. In this case func() is called only with
2604 float func (float f)
2613 out0 = func(in0);
2627 void func ()
2644 void func ()
2661 void func ()
2678 void func (float f)
2684 func(1.0, 2.0);
2695 void func (float f)
2701 func();
2712 void func (in f)
2729 void func (float f)
2735 func(2);
2746 void func (vec2 f)
2752 func(2.0);
2763 void func (vec3 f)
2769 func(vec2(2.0));
2780 void func (vec3 f);
2782 void func (vec3 f)
2786 void func (vec3 f)
2802 void func (vec3 f);
2809 float func (vec3 f)
2821 void func (vec3 f[]);
2835 void func (vec3 f[3]);
2836 void func (vec3 f[3])
2843 func(array);
2854 void func (vec3 f);
2855 void func (const vec3 f)
2871 void func (vec3 f[3]);
2872 void func (const vec3 f[3])
2888 void func (out vec3 f);
2889 void func (inout vec3 f)
2905 func (float f);
2906 func (inout vec3 f[3])
2924 func(1.0);
2928 void func (float f)
2946 Foo func ()
2966 float func (lowp float f)
2971 float func (mediump float f)
2988 void func (in float f)
2992 void func (out float f)
3009 void func (in float f)
3013 void func (inout float f)
3030 void func (out float f)
3035 void func (inout float f)
3052 float func (float f)
3057 int func (float f)
3074 lowp float func (float f)
3079 mediump float func (float f)
3096 float func (float f)
3101 const float func (float f)
3118 float func (float f)
3138 float func (float f);
3152 float func (float f)
3186 void func (vec3 f)
3190 void func (const vec3 f)
3206 void func (vec3 f)
3223 void func (vec3 f)
3240 void func (vec3 f)
3257 void func (uniform vec3 f)
3273 void func (varying vec3 f)
3289 void func (attribute vec3 f)
3305 uniform float func (vec3 f)
3322 varying float func (vec3 f)
3339 attribute float func (vec3 f)
3392 func (const float f)
3409 func (const float f[3])
3428 int func (const int a)
3436 ${POSITION_FRAG_COLOR} = vec4(func(3));
3448 int func (const int a)
3456 ${POSITION_FRAG_COLOR} = vec4(func(3));
3468 int func (const int a)
3477 ${POSITION_FRAG_COLOR} = vec4(func(3));
3488 float func (float f);
3489 float func (float f);
3491 float func (float f)
3498 ${POSITION_FRAG_COLOR} = vec4(func(1.0));