John Kessenich | 44e8cae | 2013-10-02 01:30:14 +0000 | [diff] [blame] | 1 | #version 100
|
| 2 |
|
| 3 | int f(int a, int b, int c)
|
| 4 | {
|
| 5 | int a = b; // ERROR, redefinition
|
| 6 |
|
| 7 | {
|
| 8 | float a = float(a) + 1.0;
|
| 9 | }
|
| 10 |
|
| 11 | return a;
|
| 12 | }
|
| 13 |
|
| 14 | int f(int a, int b, int c); // okay to redeclare
|
| 15 |
|
| 16 | bool b;
|
| 17 | float b(int a); // ERROR: redefinition
|
| 18 |
|
John Kessenich | 3a4687d | 2013-12-11 22:38:19 +0000 | [diff] [blame] | 19 | float c(int a);
|
| 20 | bool c; // ERROR: redefinition
|
| 21 |
|
John Kessenich | 44e8cae | 2013-10-02 01:30:14 +0000 | [diff] [blame] | 22 | float f; // ERROR: redefinition
|
John Kessenich | a4351c5 | 2013-11-11 04:21:31 +0000 | [diff] [blame] | 23 | float tan; // okay, built-in is in an outer scope
|
John Kessenich | e1f0f5b | 2013-12-04 17:23:03 +0000 | [diff] [blame] | 24 | float sin(float x); // ERROR: can't redefine built-in functions
|
| 25 | float cos(float x) // ERROR: can't redefine built-in functions
|
John Kessenich | 44e8cae | 2013-10-02 01:30:14 +0000 | [diff] [blame] | 26 | {
|
| 27 | return 1.0;
|
| 28 | }
|
John Kessenich | a4351c5 | 2013-11-11 04:21:31 +0000 | [diff] [blame] | 29 | bool radians(bool x) // okay, can overload built-in functions
|
| 30 | {
|
| 31 | return true;
|
| 32 | }
|
John Kessenich | 44e8cae | 2013-10-02 01:30:14 +0000 | [diff] [blame] | 33 |
|
| 34 | invariant gl_Position;
|
| 35 |
|
| 36 | void main()
|
| 37 | {
|
| 38 | int g(); // ERROR: no local function declarations
|
| 39 | g();
|
| 40 |
|
| 41 | float sin; // okay
|
| 42 | sin;
|
John Kessenich | 3a4687d | 2013-12-11 22:38:19 +0000 | [diff] [blame] | 43 | sin(0.7); // ERROR, use of hidden function
|
John Kessenich | 44e8cae | 2013-10-02 01:30:14 +0000 | [diff] [blame] | 44 | f(1,2,3);
|
| 45 |
|
| 46 | float f; // hides f()
|
| 47 | f = 3.0;
|
| 48 |
|
| 49 | gl_Position = vec4(f);
|
| 50 |
|
| 51 | for (int f = 0; f < 10; ++f)
|
| 52 | ++f;
|
| 53 |
|
| 54 | int x = 1;
|
| 55 | {
|
| 56 | float x = 2.0, /* 2nd x visible here */ y = x; // y is initialized to 2
|
| 57 | int z = z; // ERROR: z not previously defined.
|
| 58 | }
|
| 59 | {
|
John Kessenich | e1f0f5b | 2013-12-04 17:23:03 +0000 | [diff] [blame] | 60 | int x = x; // x is initialized to '1'
|
John Kessenich | 44e8cae | 2013-10-02 01:30:14 +0000 | [diff] [blame] | 61 | }
|
| 62 |
|
| 63 | struct S
|
| 64 | {
|
| 65 | int x;
|
| 66 | };
|
| 67 | {
|
John Kessenich | e1f0f5b | 2013-12-04 17:23:03 +0000 | [diff] [blame] | 68 | S S = S(0); // 'S' is only visible as a struct and constructor
|
| 69 | S.x; // 'S' is now visible as a variable
|
John Kessenich | 44e8cae | 2013-10-02 01:30:14 +0000 | [diff] [blame] | 70 | }
|
John Kessenich | 3a4687d | 2013-12-11 22:38:19 +0000 | [diff] [blame] | 71 |
|
| 72 | int degrees;
|
| 73 | degrees(3.2); // ERROR, use of hidden built-in function
|
John Kessenich | 44e8cae | 2013-10-02 01:30:14 +0000 | [diff] [blame] | 74 | }
|
John Kessenich | afda241 | 2013-12-04 20:41:33 +0000 | [diff] [blame] | 75 |
|
| 76 | varying struct SSS { float f; } s; // ERROR
|