summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/webgl-conf/checkout/conformance/ogles/GL/build/preprocess0_frag.frag
blob: e9d1d9fcd13ddb3e364dee4d1cacbc3ece1f4021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
Copyright (c) 2019 The Khronos Group Inc.
Use of this source code is governed by an MIT-style license that can be
found in the LICENSE.txt file.
*/


#ifdef GL_ES
precision mediump float;
#endif
//test for else elif mismatch
#define test(x,y) (x+y)

void  main(void){
 int sum =0;
 #define x 8
 #endif
 #if (x==8)
   #undef x
 #endif

 #if 1
   #undef x
 #endif

 #if 1
   #define t4 4
 #endif

 sum=test(3,6)+t4;
 #if 1
  #if 1
   #if 1
    #if 1
     #if 0
       #undef test
     #else
       #if 1
         #undef test
       #endif
       #if 0
        #undef test
       #else
          #if 0
             #undef test
          #else
             #if 1
                #undef test
             #else
               #undef test
             #else
               #jdhgj
             #endif
          #endif
       #endif
     #endif
    #endif
   #endif
  #endif
 #endif

}