aboutsummaryrefslogtreecommitdiff
path: root/Test/baseResults/400.frag.out
blob: 90904140a1036997f36f79d8d7cc377e7fc7b2be (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
400.frag
Warning, version 400 is not yet complete; most version-specific features are present, but some are missing.
ERROR: 0:18: 'textureGatherOffsets(...)' : must be a compile-time constant: offsets argument
ERROR: 0:22: 'textureGatherOffset(...)' : must be a compile-time constant: component argument
ERROR: 0:23: 'textureGatherOffset(...)' : must be 0, 1, 2, or 3: component argument
ERROR: 0:30: 'location qualifier on input' : not supported for this version or the enabled extensions 
ERROR: 0:38: 'location qualifier on uniform or buffer' : not supported for this version or the enabled extensions 
ERROR: 0:40: 'redeclaration' : cannot apply layout qualifier to gl_Color
ERROR: 0:41: 'redeclaration' : cannot change qualification of gl_ClipDistance
ERROR: 0:43: 'gl_FragCoord' : cannot redeclare after use 
ERROR: 0:51: 'texel offset' : argument must be compile-time constant 
ERROR: 0:53: 'texel offset' : value is out of range: [gl_MinProgramTexelOffset, gl_MaxProgramTexelOffset]
ERROR: 0:53: 'texel offset' : value is out of range: [gl_MinProgramTexelOffset, gl_MaxProgramTexelOffset]
ERROR: 0:54: 'texel offset' : value is out of range: [gl_MinProgramTexelOffset, gl_MaxProgramTexelOffset]
ERROR: 0:54: 'texel offset' : value is out of range: [gl_MinProgramTexelOffset, gl_MaxProgramTexelOffset]
ERROR: 0:57: 'patch' : not supported in this stage: fragment
ERROR: 0:58: 'patch' : not supported in this stage: fragment
ERROR: 0:58: 'centroid/sample/patch' : can't use auxiliary qualifier on a fragment output 
ERROR: 0:73: 'dFdxFine' : required extension not requested: GL_ARB_derivative_control
ERROR: 0:74: 'dFdyCoarse' : required extension not requested: GL_ARB_derivative_control
ERROR: 0:75: 'fwidthCoarse' : required extension not requested: GL_ARB_derivative_control
ERROR: 0:75: 'fwidthFine' : required extension not requested: GL_ARB_derivative_control
ERROR: 0:104: 'centroid/sample/patch' : can't use auxiliary qualifier on a fragment output 
ERROR: 0:123: 'interpolateAtCentroid' : no matching overloaded function found 
ERROR: 0:125: 'interpolateAtCentroid' : first argument must be an interpolant, or interpolant-array element 
ERROR: 0:127: 'interpolateAtSample' : no matching overloaded function found 
ERROR: 0:132: 'interpolateAtOffset' : no matching overloaded function found 
ERROR: 0:134: 'interpolateAtOffset' : first argument must be an interpolant, or interpolant-array element 
ERROR: 0:135: 'interpolateAtOffset' : first argument must be an interpolant, or interpolant-array element 
ERROR: 0:136: 'interpolateAtOffset' : first argument must be an interpolant, or interpolant-array element 
ERROR: 0:139: 'interpolateAtCentroid' : first argument must be an interpolant, or interpolant-array element 
ERROR: 0:140: 'interpolateAtSample' : first argument must be an interpolant, or interpolant-array element 
ERROR: 0:183: 'textureQueryLod' : no matching overloaded function found 
ERROR: 0:183: 'assign' :  cannot convert from 'const float' to 'temp 2-component vector of float'
ERROR: 0:184: 'textureQueryLod' : no matching overloaded function found 
ERROR: 0:184: 'assign' :  cannot convert from 'const float' to 'temp 2-component vector of float'
ERROR: 0:187: '' :  syntax error
ERROR: 35 compilation errors.  No code generated.


Shader version: 400
Requested GL_ARB_derivative_control
Requested GL_ARB_separate_shader_objects
gl_FragCoord pixel center is integer
gl_FragCoord origin is upper left
ERROR: node is still EOpNull!
0:10  Function Definition: main( (global void)
0:10    Function Parameters: 
0:?     Sequence
0:13      move second child to first child (temp 4-component vector of float)
0:13        'v' (temp 4-component vector of float)
0:13        texture (global 4-component vector of float)
0:13          indirect index (temp sampler2D)
0:13            'arrayedSampler' (uniform 5-element array of sampler2D)
0:13            'i' (flat in int)
0:13          'c2D' (smooth in 2-component vector of float)
0:14      move second child to first child (temp float)
0:14        direct index (temp float)
0:14          'outp' (out 4-component vector of float)
0:14          Constant:
0:14            0 (const int)
0:14        direct index (smooth temp float ClipDistance)
0:14          'gl_ClipDistance' (smooth in 4-element array of float ClipDistance)
0:14          Constant:
0:14            1 (const int)
0:18      Sequence
0:18        move second child to first child (temp 4-component vector of uint)
0:18          'uv4' (temp 4-component vector of uint)
0:18          textureGatherOffsets (global 4-component vector of uint)
0:18            'samp2dr' (uniform usampler2DRect)
0:18            'c2D' (smooth in 2-component vector of float)
0:18            'offsets' (temp 4-element array of 2-component vector of int)
0:18            Constant:
0:18              2 (const int)
0:19      move second child to first child (temp 4-component vector of uint)
0:19        'uv4' (temp 4-component vector of uint)
0:19        textureGatherOffsets (global 4-component vector of uint)
0:19          'samp2dr' (uniform usampler2DRect)
0:19          'c2D' (smooth in 2-component vector of float)
0:19          Constant:
0:19            1 (const int)
0:19            2 (const int)
0:19            3 (const int)
0:19            4 (const int)
0:19            15 (const int)
0:19            16 (const int)
0:19            -2 (const int)
0:19            0 (const int)
0:19          Constant:
0:19            2 (const int)
0:20      Sequence
0:20        move second child to first child (temp 4-component vector of float)
0:20          'v4' (temp 4-component vector of float)
0:20          textureGather (global 4-component vector of float)
0:20            direct index (temp sampler2D)
0:20              'arrayedSampler' (uniform 5-element array of sampler2D)
0:20              Constant:
0:20                0 (const int)
0:20            'c2D' (smooth in 2-component vector of float)
0:21      Sequence
0:21        move second child to first child (temp 4-component vector of int)
0:21          'iv4' (temp 4-component vector of int)
0:21          textureGatherOffset (global 4-component vector of int)
0:21            'isamp2DA' (uniform isampler2DArray)
0:21            Constant:
0:21              0.100000
0:21              0.100000
0:21              0.100000
0:21            Constant:
0:21              1 (const int)
0:21              1 (const int)
0:21            Constant:
0:21              3 (const int)
0:22      move second child to first child (temp 4-component vector of int)
0:22        'iv4' (temp 4-component vector of int)
0:22        textureGatherOffset (global 4-component vector of int)
0:22          'isamp2DA' (uniform isampler2DArray)
0:22          Constant:
0:22            0.100000
0:22            0.100000
0:22            0.100000
0:22          Constant:
0:22            1 (const int)
0:22            1 (const int)
0:22          'i' (flat in int)
0:23      move second child to first child (temp 4-component vector of int)
0:23        'iv4' (temp 4-component vector of int)
0:23        textureGatherOffset (global 4-component vector of int)
0:23          'isamp2DA' (uniform isampler2DArray)
0:23          Constant:
0:23            0.100000
0:23            0.100000
0:23            0.100000
0:23          Constant:
0:23            1 (const int)
0:23            1 (const int)
0:23          Constant:
0:23            4 (const int)
0:24      move second child to first child (temp 4-component vector of int)
0:24        'iv4' (temp 4-component vector of int)
0:24        textureGatherOffset (global 4-component vector of int)
0:24          'isamp2DA' (uniform isampler2DArray)
0:24          Constant:
0:24            0.100000
0:24            0.100000
0:24            0.100000
0:24          Constant:
0:24            1 (const int)
0:24            1 (const int)
0:24          Constant:
0:24            3 (const int)
0:25      move second child to first child (temp 4-component vector of int)
0:25        'iv4' (temp 4-component vector of int)
0:25        textureGatherOffset (global 4-component vector of int)
0:25          'isamp2DA' (uniform isampler2DArray)
0:25          Constant:
0:25            0.100000
0:25            0.100000
0:25            0.100000
0:25          Construct ivec2 (temp 2-component vector of int)
0:25            'i' (flat in int)
0:27      Sequence
0:27        move second child to first child (temp 4-component vector of float)
0:27          'c' (temp 4-component vector of float)
0:27          'gl_FragCoord' (gl_FragCoord 4-component vector of float FragCoord)
0:47  Function Definition: foo23( (global void)
0:47    Function Parameters: 
0:?     Sequence
0:51      textureProjGradOffset (global float)
0:51        'u2drs' (uniform sampler2DRectShadow)
0:51        'outp' (out 4-component vector of float)
0:51        Constant:
0:51          0.000000
0:51          0.000000
0:51        Constant:
0:51          0.000000
0:51          0.000000
0:51        Convert float to int (temp 2-component vector of int)
0:51          'c2D' (smooth in 2-component vector of float)
0:52      textureProjGradOffset (global float)
0:52        'u2drs' (uniform sampler2DRectShadow)
0:52        'outp' (out 4-component vector of float)
0:52        Constant:
0:52          0.000000
0:52          0.000000
0:52        Constant:
0:52          0.000000
0:52          0.000000
0:52        Constant:
0:52          3 (const int)
0:52          4 (const int)
0:53      textureProjGradOffset (global float)
0:53        'u2drs' (uniform sampler2DRectShadow)
0:53        'outp' (out 4-component vector of float)
0:53        Constant:
0:53          0.000000
0:53          0.000000
0:53        Constant:
0:53          0.000000
0:53          0.000000
0:53        Constant:
0:53          15 (const int)
0:53          16 (const int)
0:54      textureProjGradOffset (global float)
0:54        'u2drs' (uniform sampler2DRectShadow)
0:54        'outp' (out 4-component vector of float)
0:54        Constant:
0:54          0.000000
0:54          0.000000
0:54        Constant:
0:54          0.000000
0:54          0.000000
0:54        Constant:
0:54          -10 (const int)
0:54          20 (const int)
0:60  Function Definition: foo24( (global void)
0:60    Function Parameters: 
0:?     Sequence
0:63      move second child to first child (temp 3-component vector of double)
0:63        'df' (temp 3-component vector of double)
0:63        modf (global 3-component vector of double)
0:63          Convert float to double (temp 3-component vector of double)
0:63            vector swizzle (temp 3-component vector of float)
0:63              'outp' (out 4-component vector of float)
0:63              Sequence
0:63                Constant:
0:63                  0 (const int)
0:63                Constant:
0:63                  1 (const int)
0:63                Constant:
0:63                  2 (const int)
0:63          'di' (temp 3-component vector of double)
0:71  Function Definition: foodc1( (global void)
0:71    Function Parameters: 
0:73    Sequence
0:73      Sequence
0:73        move second child to first child (temp 2-component vector of float)
0:73          'v2' (temp 2-component vector of float)
0:73          dPdxFine (global 2-component vector of float)
0:73            'in2' (smooth in 2-component vector of float)
0:74      Sequence
0:74        move second child to first child (temp 3-component vector of float)
0:74          'v3' (temp 3-component vector of float)
0:74          dPdyCoarse (global 3-component vector of float)
0:74            'in3' (smooth in 3-component vector of float)
0:75      Sequence
0:75        move second child to first child (temp 4-component vector of float)
0:75          'v4' (temp 4-component vector of float)
0:75          add (temp 4-component vector of float)
0:75            fwidthCoarse (global 4-component vector of float)
0:75              'in4' (smooth in 4-component vector of float)
0:75            fwidthFine (global 4-component vector of float)
0:75              'in4' (smooth in 4-component vector of float)
0:80  Function Definition: foodc2( (global void)
0:80    Function Parameters: 
0:82    Sequence
0:82      Sequence
0:82        move second child to first child (temp 2-component vector of float)
0:82          'v2' (temp 2-component vector of float)
0:82          dPdxFine (global 2-component vector of float)
0:82            'in2' (smooth in 2-component vector of float)
0:83      Sequence
0:83        move second child to first child (temp 3-component vector of float)
0:83          'v3' (temp 3-component vector of float)
0:83          dPdyCoarse (global 3-component vector of float)
0:83            'in3' (smooth in 3-component vector of float)
0:84      Sequence
0:84        move second child to first child (temp 4-component vector of float)
0:84          'v4' (temp 4-component vector of float)
0:84          add (temp 4-component vector of float)
0:84            fwidthCoarse (global 4-component vector of float)
0:84              'in4' (smooth in 4-component vector of float)
0:84            fwidthFine (global 4-component vector of float)
0:84              'in4' (smooth in 4-component vector of float)
0:89      move second child to first child (temp 2-component vector of float)
0:89        'v2' (temp 2-component vector of float)
0:89        frexp (global 2-component vector of float)
0:89          'v2' (temp 2-component vector of float)
0:89          'i2' (temp 2-component vector of int)
0:90      move second child to first child (temp 3-component vector of float)
0:90        'v3' (temp 3-component vector of float)
0:90        ldexp (global 3-component vector of float)
0:90          'v3' (temp 3-component vector of float)
0:90          'i3' (temp 3-component vector of int)
0:92      move second child to first child (temp uint)
0:92        'u1' (temp uint)
0:92        PackUnorm4x8 (global uint)
0:92          'v4' (temp 4-component vector of float)
0:93      move second child to first child (temp uint)
0:93        'u1' (temp uint)
0:93        PackSnorm4x8 (global uint)
0:93          'v4' (temp 4-component vector of float)
0:94      move second child to first child (temp 4-component vector of float)
0:94        'v4' (temp 4-component vector of float)
0:94        UnpackUnorm4x8 (global 4-component vector of float)
0:94          'u1' (temp uint)
0:95      move second child to first child (temp 4-component vector of float)
0:95        'v4' (temp 4-component vector of float)
0:95        UnpackSnorm4x8 (global 4-component vector of float)
0:95          'u1' (temp uint)
0:99      move second child to first child (temp double)
0:99        'd' (temp double)
0:99        PackDouble2x32 (global double)
0:99          'u2' (temp 2-component vector of uint)
0:100      move second child to first child (temp 2-component vector of uint)
0:100        'u2' (temp 2-component vector of uint)
0:100        UnpackDouble2x32 (global 2-component vector of uint)
0:100          'd' (temp double)
0:117  Function Definition: interp( (global void)
0:117    Function Parameters: 
0:119    Sequence
0:119      interpolateAtCentroid (global 2-component vector of float)
0:119        'colorfc' (centroid flat in 2-component vector of float)
0:120      interpolateAtCentroid (global 4-component vector of float)
0:120        'colorSampIn' (smooth sample in 4-component vector of float)
0:121      interpolateAtCentroid (global 4-component vector of float)
0:121        'colorfsi' (noperspective in 4-component vector of float)
0:122      interpolateAtCentroid (global float)
0:122        'scalarIn' (smooth in float)
0:123      Constant:
0:123        0.000000
0:124      interpolateAtCentroid (global 3-component vector of float)
0:124        direct index (smooth sample temp 3-component vector of float)
0:124          'sampInArray' (smooth sample in 4-element array of 3-component vector of float)
0:124          Constant:
0:124            2 (const int)
0:125      interpolateAtCentroid (global 2-component vector of float)
0:125        vector swizzle (temp 2-component vector of float)
0:125          direct index (smooth sample temp 3-component vector of float)
0:125            'sampInArray' (smooth sample in 4-element array of 3-component vector of float)
0:125            Constant:
0:125              2 (const int)
0:125          Sequence
0:125            Constant:
0:125              0 (const int)
0:125            Constant:
0:125              1 (const int)
0:127      Constant:
0:127        0.000000
0:128      interpolateAtSample (global 3-component vector of float)
0:128        indirect index (smooth sample temp 3-component vector of float)
0:128          'sampInArray' (smooth sample in 4-element array of 3-component vector of float)
0:128          'i' (flat in int)
0:128        Constant:
0:128          0 (const int)
0:129      interpolateAtSample (global float)
0:129        x: direct index for structure (global float)
0:129          's1' (smooth in structure{global float x})
0:129          Constant:
0:129            0 (const int)
0:129        Constant:
0:129          2 (const int)
0:130      interpolateAtSample (global float)
0:130        'scalarIn' (smooth in float)
0:130        Constant:
0:130          1 (const int)
0:132      Constant:
0:132        0.000000
0:133      interpolateAtOffset (global 3-component vector of float)
0:133        direct index (smooth sample temp 3-component vector of float)
0:133          'sampInArray' (smooth sample in 4-element array of 3-component vector of float)
0:133          Constant:
0:133            2 (const int)
0:133        Constant:
0:133          0.200000
0:133          0.200000
0:134      interpolateAtOffset (global 2-component vector of float)
0:134        vector swizzle (temp 2-component vector of float)
0:134          direct index (smooth sample temp 3-component vector of float)
0:134            'sampInArray' (smooth sample in 4-element array of 3-component vector of float)
0:134            Constant:
0:134              2 (const int)
0:134          Sequence
0:134            Constant:
0:134              0 (const int)
0:134            Constant:
0:134              1 (const int)
0:134        Constant:
0:134          0.200000
0:134          0.200000
0:135      interpolateAtOffset (global float)
0:135        add (temp float)
0:135          'scalarIn' (smooth in float)
0:135          'scalarIn' (smooth in float)
0:135        Constant:
0:135          0.200000
0:135          0.200000
0:136      interpolateAtOffset (global float)
0:136        x: direct index for structure (global float)
0:136          's2' (sample temp structure{global float x})
0:136          Constant:
0:136            0 (const int)
0:136        Constant:
0:136          0.200000
0:136          0.200000
0:139      interpolateAtCentroid (global float)
0:139        'f' (temp float)
0:140      interpolateAtSample (global 4-component vector of float)
0:140        'outp' (out 4-component vector of float)
0:140        Constant:
0:140          0 (const int)
0:161  Function Definition: qlod( (global void)
0:161    Function Parameters: 
0:?     Sequence
0:168      move second child to first child (temp 2-component vector of float)
0:168        'lod' (temp 2-component vector of float)
0:168        textureQueryLod (global 2-component vector of float)
0:168          'samp1D' (uniform sampler1D)
0:168          'pf' (temp float)
0:169      move second child to first child (temp 2-component vector of float)
0:169        'lod' (temp 2-component vector of float)
0:169        textureQueryLod (global 2-component vector of float)
0:169          'isamp2D' (uniform isampler2D)
0:169          'pf2' (temp 2-component vector of float)
0:170      move second child to first child (temp 2-component vector of float)
0:170        'lod' (temp 2-component vector of float)
0:170        textureQueryLod (global 2-component vector of float)
0:170          'usamp3D' (uniform usampler3D)
0:170          'pf3' (temp 3-component vector of float)
0:171      move second child to first child (temp 2-component vector of float)
0:171        'lod' (temp 2-component vector of float)
0:171        textureQueryLod (global 2-component vector of float)
0:171          'sampCube' (uniform samplerCube)
0:171          'pf3' (temp 3-component vector of float)
0:172      move second child to first child (temp 2-component vector of float)
0:172        'lod' (temp 2-component vector of float)
0:172        textureQueryLod (global 2-component vector of float)
0:172          'isamp1DA' (uniform isampler1DArray)
0:172          'pf' (temp float)
0:173      move second child to first child (temp 2-component vector of float)
0:173        'lod' (temp 2-component vector of float)
0:173        textureQueryLod (global 2-component vector of float)
0:173          'usamp2DA' (uniform usampler2DArray)
0:173          'pf2' (temp 2-component vector of float)
0:174      move second child to first child (temp 2-component vector of float)
0:174        'lod' (temp 2-component vector of float)
0:174        textureQueryLod (global 2-component vector of float)
0:174          'isampCubeA' (uniform isamplerCubeArray)
0:174          'pf3' (temp 3-component vector of float)
0:176      move second child to first child (temp 2-component vector of float)
0:176        'lod' (temp 2-component vector of float)
0:176        textureQueryLod (global 2-component vector of float)
0:176          'samp1Ds' (uniform sampler1DShadow)
0:176          'pf' (temp float)
0:177      move second child to first child (temp 2-component vector of float)
0:177        'lod' (temp 2-component vector of float)
0:177        textureQueryLod (global 2-component vector of float)
0:177          'samp2Ds' (uniform sampler2DShadow)
0:177          'pf2' (temp 2-component vector of float)
0:178      move second child to first child (temp 2-component vector of float)
0:178        'lod' (temp 2-component vector of float)
0:178        textureQueryLod (global 2-component vector of float)
0:178          'sampCubes' (uniform samplerCubeShadow)
0:178          'pf3' (temp 3-component vector of float)
0:179      move second child to first child (temp 2-component vector of float)
0:179        'lod' (temp 2-component vector of float)
0:179        textureQueryLod (global 2-component vector of float)
0:179          'samp1DAs' (uniform sampler1DArrayShadow)
0:179          'pf' (temp float)
0:180      move second child to first child (temp 2-component vector of float)
0:180        'lod' (temp 2-component vector of float)
0:180        textureQueryLod (global 2-component vector of float)
0:180          'samp2DAs' (uniform sampler2DArrayShadow)
0:180          'pf2' (temp 2-component vector of float)
0:181      move second child to first child (temp 2-component vector of float)
0:181        'lod' (temp 2-component vector of float)
0:181        textureQueryLod (global 2-component vector of float)
0:181          'sampCubeAs' (uniform samplerCubeArrayShadow)
0:181          'pf3' (temp 3-component vector of float)
0:183      'lod' (temp 2-component vector of float)
0:184      'lod' (temp 2-component vector of float)
0:?   Linker Objects
0:?     'c2D' (smooth in 2-component vector of float)
0:?     'i' (flat in int)
0:?     'outp' (out 4-component vector of float)
0:?     'arrayedSampler' (uniform 5-element array of sampler2D)
0:?     'samp2dr' (uniform usampler2DRect)
0:?     'isamp2DA' (uniform isampler2DArray)
0:?     'gl_ClipDistance' (smooth in 4-element array of float ClipDistance)
0:?     'vl' (layout(location=4 ) smooth in 4-component vector of float)
0:?     'vl2' (layout(location=6 ) smooth in 4-component vector of float)
0:?     'uv3' (layout(location=3 ) uniform 3-component vector of float)
0:?     'anon@0' (in block{in float FogFragCoord gl_FogFragCoord, in implicitly-sized array of 4-component vector of float TexCoord gl_TexCoord, smooth in 4-component vector of float Color gl_Color, in 4-component vector of float SecondaryColor gl_SecondaryColor})
0:?     'gl_FragCoord' (gl_FragCoord 4-component vector of float FragCoord)
0:?     'u2drs' (uniform sampler2DRectShadow)
0:?     'patchIn' (smooth patch in 4-component vector of float)
0:?     'patchOut' (patch out 4-component vector of float)
0:?     'in1' (smooth in float)
0:?     'in2' (smooth in 2-component vector of float)
0:?     'in3' (smooth in 3-component vector of float)
0:?     'in4' (smooth in 4-component vector of float)
0:?     'colorSampIn' (smooth sample in 4-component vector of float)
0:?     'colorSampleBad' (sample out 4-component vector of float)
0:?     'colorfsi' (noperspective in 4-component vector of float)
0:?     'sampInArray' (smooth sample in 4-element array of 3-component vector of float)
0:?     'scalarIn' (smooth in float)
0:?     'colorfc' (centroid flat in 2-component vector of float)
0:?     's1' (smooth in structure{global float x})
0:?     's2' (sample temp structure{global float x})
0:?     'samp1D' (uniform sampler1D)
0:?     'isamp2D' (uniform isampler2D)
0:?     'usamp3D' (uniform usampler3D)
0:?     'sampCube' (uniform samplerCube)
0:?     'isamp1DA' (uniform isampler1DArray)
0:?     'usamp2DA' (uniform usampler2DArray)
0:?     'isampCubeA' (uniform isamplerCubeArray)
0:?     'samp1Ds' (uniform sampler1DShadow)
0:?     'samp2Ds' (uniform sampler2DShadow)
0:?     'sampCubes' (uniform samplerCubeShadow)
0:?     'samp1DAs' (uniform sampler1DArrayShadow)
0:?     'samp2DAs' (uniform sampler2DArrayShadow)
0:?     'sampCubeAs' (uniform samplerCubeArrayShadow)
0:?     'sampBuf' (uniform samplerBuffer)
0:?     'sampRect' (uniform sampler2DRect)


Linked fragment stage:


Shader version: 400
Requested GL_ARB_derivative_control
Requested GL_ARB_separate_shader_objects
gl_FragCoord pixel center is integer
gl_FragCoord origin is upper left
ERROR: node is still EOpNull!
0:10  Function Definition: main( (global void)
0:10    Function Parameters: 
0:?     Sequence
0:13      move second child to first child (temp 4-component vector of float)
0:13        'v' (temp 4-component vector of float)
0:13        texture (global 4-component vector of float)
0:13          indirect index (temp sampler2D)
0:13            'arrayedSampler' (uniform 5-element array of sampler2D)
0:13            'i' (flat in int)
0:13          'c2D' (smooth in 2-component vector of float)
0:14      move second child to first child (temp float)
0:14        direct index (temp float)
0:14          'outp' (out 4-component vector of float)
0:14          Constant:
0:14            0 (const int)
0:14        direct index (smooth temp float ClipDistance)
0:14          'gl_ClipDistance' (smooth in 4-element array of float ClipDistance)
0:14          Constant:
0:14            1 (const int)
0:18      Sequence
0:18        move second child to first child (temp 4-component vector of uint)
0:18          'uv4' (temp 4-component vector of uint)
0:18          textureGatherOffsets (global 4-component vector of uint)
0:18            'samp2dr' (uniform usampler2DRect)
0:18            'c2D' (smooth in 2-component vector of float)
0:18            'offsets' (temp 4-element array of 2-component vector of int)
0:18            Constant:
0:18              2 (const int)
0:19      move second child to first child (temp 4-component vector of uint)
0:19        'uv4' (temp 4-component vector of uint)
0:19        textureGatherOffsets (global 4-component vector of uint)
0:19          'samp2dr' (uniform usampler2DRect)
0:19          'c2D' (smooth in 2-component vector of float)
0:19          Constant:
0:19            1 (const int)
0:19            2 (const int)
0:19            3 (const int)
0:19            4 (const int)
0:19            15 (const int)
0:19            16 (const int)
0:19            -2 (const int)
0:19            0 (const int)
0:19          Constant:
0:19            2 (const int)
0:20      Sequence
0:20        move second child to first child (temp 4-component vector of float)
0:20          'v4' (temp 4-component vector of float)
0:20          textureGather (global 4-component vector of float)
0:20            direct index (temp sampler2D)
0:20              'arrayedSampler' (uniform 5-element array of sampler2D)
0:20              Constant:
0:20                0 (const int)
0:20            'c2D' (smooth in 2-component vector of float)
0:21      Sequence
0:21        move second child to first child (temp 4-component vector of int)
0:21          'iv4' (temp 4-component vector of int)
0:21          textureGatherOffset (global 4-component vector of int)
0:21            'isamp2DA' (uniform isampler2DArray)
0:21            Constant:
0:21              0.100000
0:21              0.100000
0:21              0.100000
0:21            Constant:
0:21              1 (const int)
0:21              1 (const int)
0:21            Constant:
0:21              3 (const int)
0:22      move second child to first child (temp 4-component vector of int)
0:22        'iv4' (temp 4-component vector of int)
0:22        textureGatherOffset (global 4-component vector of int)
0:22          'isamp2DA' (uniform isampler2DArray)
0:22          Constant:
0:22            0.100000
0:22            0.100000
0:22            0.100000
0:22          Constant:
0:22            1 (const int)
0:22            1 (const int)
0:22          'i' (flat in int)
0:23      move second child to first child (temp 4-component vector of int)
0:23        'iv4' (temp 4-component vector of int)
0:23        textureGatherOffset (global 4-component vector of int)
0:23          'isamp2DA' (uniform isampler2DArray)
0:23          Constant:
0:23            0.100000
0:23            0.100000
0:23            0.100000
0:23          Constant:
0:23            1 (const int)
0:23            1 (const int)
0:23          Constant:
0:23            4 (const int)
0:24      move second child to first child (temp 4-component vector of int)
0:24        'iv4' (temp 4-component vector of int)
0:24        textureGatherOffset (global 4-component vector of int)
0:24          'isamp2DA' (uniform isampler2DArray)
0:24          Constant:
0:24            0.100000
0:24            0.100000
0:24            0.100000
0:24          Constant:
0:24            1 (const int)
0:24            1 (const int)
0:24          Constant:
0:24            3 (const int)
0:25      move second child to first child (temp 4-component vector of int)
0:25        'iv4' (temp 4-component vector of int)
0:25        textureGatherOffset (global 4-component vector of int)
0:25          'isamp2DA' (uniform isampler2DArray)
0:25          Constant:
0:25            0.100000
0:25            0.100000
0:25            0.100000
0:25          Construct ivec2 (temp 2-component vector of int)
0:25            'i' (flat in int)
0:27      Sequence
0:27        move second child to first child (temp 4-component vector of float)
0:27          'c' (temp 4-component vector of float)
0:27          'gl_FragCoord' (gl_FragCoord 4-component vector of float FragCoord)
0:47  Function Definition: foo23( (global void)
0:47    Function Parameters: 
0:?     Sequence
0:51      textureProjGradOffset (global float)
0:51        'u2drs' (uniform sampler2DRectShadow)
0:51        'outp' (out 4-component vector of float)
0:51        Constant:
0:51          0.000000
0:51          0.000000
0:51        Constant:
0:51          0.000000
0:51          0.000000
0:51        Convert float to int (temp 2-component vector of int)
0:51          'c2D' (smooth in 2-component vector of float)
0:52      textureProjGradOffset (global float)
0:52        'u2drs' (uniform sampler2DRectShadow)
0:52        'outp' (out 4-component vector of float)
0:52        Constant:
0:52          0.000000
0:52          0.000000
0:52        Constant:
0:52          0.000000
0:52          0.000000
0:52        Constant:
0:52          3 (const int)
0:52          4 (const int)
0:53      textureProjGradOffset (global float)
0:53        'u2drs' (uniform sampler2DRectShadow)
0:53        'outp' (out 4-component vector of float)
0:53        Constant:
0:53          0.000000
0:53          0.000000
0:53        Constant:
0:53          0.000000
0:53          0.000000
0:53        Constant:
0:53          15 (const int)
0:53          16 (const int)
0:54      textureProjGradOffset (global float)
0:54        'u2drs' (uniform sampler2DRectShadow)
0:54        'outp' (out 4-component vector of float)
0:54        Constant:
0:54          0.000000
0:54          0.000000
0:54        Constant:
0:54          0.000000
0:54          0.000000
0:54        Constant:
0:54          -10 (const int)
0:54          20 (const int)
0:60  Function Definition: foo24( (global void)
0:60    Function Parameters: 
0:?     Sequence
0:63      move second child to first child (temp 3-component vector of double)
0:63        'df' (temp 3-component vector of double)
0:63        modf (global 3-component vector of double)
0:63          Convert float to double (temp 3-component vector of double)
0:63            vector swizzle (temp 3-component vector of float)
0:63              'outp' (out 4-component vector of float)
0:63              Sequence
0:63                Constant:
0:63                  0 (const int)
0:63                Constant:
0:63                  1 (const int)
0:63                Constant:
0:63                  2 (const int)
0:63          'di' (temp 3-component vector of double)
0:71  Function Definition: foodc1( (global void)
0:71    Function Parameters: 
0:73    Sequence
0:73      Sequence
0:73        move second child to first child (temp 2-component vector of float)
0:73          'v2' (temp 2-component vector of float)
0:73          dPdxFine (global 2-component vector of float)
0:73            'in2' (smooth in 2-component vector of float)
0:74      Sequence
0:74        move second child to first child (temp 3-component vector of float)
0:74          'v3' (temp 3-component vector of float)
0:74          dPdyCoarse (global 3-component vector of float)
0:74            'in3' (smooth in 3-component vector of float)
0:75      Sequence
0:75        move second child to first child (temp 4-component vector of float)
0:75          'v4' (temp 4-component vector of float)
0:75          add (temp 4-component vector of float)
0:75            fwidthCoarse (global 4-component vector of float)
0:75              'in4' (smooth in 4-component vector of float)
0:75            fwidthFine (global 4-component vector of float)
0:75              'in4' (smooth in 4-component vector of float)
0:80  Function Definition: foodc2( (global void)
0:80    Function Parameters: 
0:82    Sequence
0:82      Sequence
0:82        move second child to first child (temp 2-component vector of float)
0:82          'v2' (temp 2-component vector of float)
0:82          dPdxFine (global 2-component vector of float)
0:82            'in2' (smooth in 2-component vector of float)
0:83      Sequence
0:83        move second child to first child (temp 3-component vector of float)
0:83          'v3' (temp 3-component vector of float)
0:83          dPdyCoarse (global 3-component vector of float)
0:83            'in3' (smooth in 3-component vector of float)
0:84      Sequence
0:84        move second child to first child (temp 4-component vector of float)
0:84          'v4' (temp 4-component vector of float)
0:84          add (temp 4-component vector of float)
0:84            fwidthCoarse (global 4-component vector of float)
0:84              'in4' (smooth in 4-component vector of float)
0:84            fwidthFine (global 4-component vector of float)
0:84              'in4' (smooth in 4-component vector of float)
0:89      move second child to first child (temp 2-component vector of float)
0:89        'v2' (temp 2-component vector of float)
0:89        frexp (global 2-component vector of float)
0:89          'v2' (temp 2-component vector of float)
0:89          'i2' (temp 2-component vector of int)
0:90      move second child to first child (temp 3-component vector of float)
0:90        'v3' (temp 3-component vector of float)
0:90        ldexp (global 3-component vector of float)
0:90          'v3' (temp 3-component vector of float)
0:90          'i3' (temp 3-component vector of int)
0:92      move second child to first child (temp uint)
0:92        'u1' (temp uint)
0:92        PackUnorm4x8 (global uint)
0:92          'v4' (temp 4-component vector of float)
0:93      move second child to first child (temp uint)
0:93        'u1' (temp uint)
0:93        PackSnorm4x8 (global uint)
0:93          'v4' (temp 4-component vector of float)
0:94      move second child to first child (temp 4-component vector of float)
0:94        'v4' (temp 4-component vector of float)
0:94        UnpackUnorm4x8 (global 4-component vector of float)
0:94          'u1' (temp uint)
0:95      move second child to first child (temp 4-component vector of float)
0:95        'v4' (temp 4-component vector of float)
0:95        UnpackSnorm4x8 (global 4-component vector of float)
0:95          'u1' (temp uint)
0:99      move second child to first child (temp double)
0:99        'd' (temp double)
0:99        PackDouble2x32 (global double)
0:99          'u2' (temp 2-component vector of uint)
0:100      move second child to first child (temp 2-component vector of uint)
0:100        'u2' (temp 2-component vector of uint)
0:100        UnpackDouble2x32 (global 2-component vector of uint)
0:100          'd' (temp double)
0:117  Function Definition: interp( (global void)
0:117    Function Parameters: 
0:119    Sequence
0:119      interpolateAtCentroid (global 2-component vector of float)
0:119        'colorfc' (centroid flat in 2-component vector of float)
0:120      interpolateAtCentroid (global 4-component vector of float)
0:120        'colorSampIn' (smooth sample in 4-component vector of float)
0:121      interpolateAtCentroid (global 4-component vector of float)
0:121        'colorfsi' (noperspective in 4-component vector of float)
0:122      interpolateAtCentroid (global float)
0:122        'scalarIn' (smooth in float)
0:123      Constant:
0:123        0.000000
0:124      interpolateAtCentroid (global 3-component vector of float)
0:124        direct index (smooth sample temp 3-component vector of float)
0:124          'sampInArray' (smooth sample in 4-element array of 3-component vector of float)
0:124          Constant:
0:124            2 (const int)
0:125      interpolateAtCentroid (global 2-component vector of float)
0:125        vector swizzle (temp 2-component vector of float)
0:125          direct index (smooth sample temp 3-component vector of float)
0:125            'sampInArray' (smooth sample in 4-element array of 3-component vector of float)
0:125            Constant:
0:125              2 (const int)
0:125          Sequence
0:125            Constant:
0:125              0 (const int)
0:125            Constant:
0:125              1 (const int)
0:127      Constant:
0:127        0.000000
0:128      interpolateAtSample (global 3-component vector of float)
0:128        indirect index (smooth sample temp 3-component vector of float)
0:128          'sampInArray' (smooth sample in 4-element array of 3-component vector of float)
0:128          'i' (flat in int)
0:128        Constant:
0:128          0 (const int)
0:129      interpolateAtSample (global float)
0:129        x: direct index for structure (global float)
0:129          's1' (smooth in structure{global float x})
0:129          Constant:
0:129            0 (const int)
0:129        Constant:
0:129          2 (const int)
0:130      interpolateAtSample (global float)
0:130        'scalarIn' (smooth in float)
0:130        Constant:
0:130          1 (const int)
0:132      Constant:
0:132        0.000000
0:133      interpolateAtOffset (global 3-component vector of float)
0:133        direct index (smooth sample temp 3-component vector of float)
0:133          'sampInArray' (smooth sample in 4-element array of 3-component vector of float)
0:133          Constant:
0:133            2 (const int)
0:133        Constant:
0:133          0.200000
0:133          0.200000
0:134      interpolateAtOffset (global 2-component vector of float)
0:134        vector swizzle (temp 2-component vector of float)
0:134          direct index (smooth sample temp 3-component vector of float)
0:134            'sampInArray' (smooth sample in 4-element array of 3-component vector of float)
0:134            Constant:
0:134              2 (const int)
0:134          Sequence
0:134            Constant:
0:134              0 (const int)
0:134            Constant:
0:134              1 (const int)
0:134        Constant:
0:134          0.200000
0:134          0.200000
0:135      interpolateAtOffset (global float)
0:135        add (temp float)
0:135          'scalarIn' (smooth in float)
0:135          'scalarIn' (smooth in float)
0:135        Constant:
0:135          0.200000
0:135          0.200000
0:136      interpolateAtOffset (global float)
0:136        x: direct index for structure (global float)
0:136          's2' (sample temp structure{global float x})
0:136          Constant:
0:136            0 (const int)
0:136        Constant:
0:136          0.200000
0:136          0.200000
0:139      interpolateAtCentroid (global float)
0:139        'f' (temp float)
0:140      interpolateAtSample (global 4-component vector of float)
0:140        'outp' (out 4-component vector of float)
0:140        Constant:
0:140          0 (const int)
0:161  Function Definition: qlod( (global void)
0:161    Function Parameters: 
0:?     Sequence
0:168      move second child to first child (temp 2-component vector of float)
0:168        'lod' (temp 2-component vector of float)
0:168        textureQueryLod (global 2-component vector of float)
0:168          'samp1D' (uniform sampler1D)
0:168          'pf' (temp float)
0:169      move second child to first child (temp 2-component vector of float)
0:169        'lod' (temp 2-component vector of float)
0:169        textureQueryLod (global 2-component vector of float)
0:169          'isamp2D' (uniform isampler2D)
0:169          'pf2' (temp 2-component vector of float)
0:170      move second child to first child (temp 2-component vector of float)
0:170        'lod' (temp 2-component vector of float)
0:170        textureQueryLod (global 2-component vector of float)
0:170          'usamp3D' (uniform usampler3D)
0:170          'pf3' (temp 3-component vector of float)
0:171      move second child to first child (temp 2-component vector of float)
0:171        'lod' (temp 2-component vector of float)
0:171        textureQueryLod (global 2-component vector of float)
0:171          'sampCube' (uniform samplerCube)
0:171          'pf3' (temp 3-component vector of float)
0:172      move second child to first child (temp 2-component vector of float)
0:172        'lod' (temp 2-component vector of float)
0:172        textureQueryLod (global 2-component vector of float)
0:172          'isamp1DA' (uniform isampler1DArray)
0:172          'pf' (temp float)
0:173      move second child to first child (temp 2-component vector of float)
0:173        'lod' (temp 2-component vector of float)
0:173        textureQueryLod (global 2-component vector of float)
0:173          'usamp2DA' (uniform usampler2DArray)
0:173          'pf2' (temp 2-component vector of float)
0:174      move second child to first child (temp 2-component vector of float)
0:174        'lod' (temp 2-component vector of float)
0:174        textureQueryLod (global 2-component vector of float)
0:174          'isampCubeA' (uniform isamplerCubeArray)
0:174          'pf3' (temp 3-component vector of float)
0:176      move second child to first child (temp 2-component vector of float)
0:176        'lod' (temp 2-component vector of float)
0:176        textureQueryLod (global 2-component vector of float)
0:176          'samp1Ds' (uniform sampler1DShadow)
0:176          'pf' (temp float)
0:177      move second child to first child (temp 2-component vector of float)
0:177        'lod' (temp 2-component vector of float)
0:177        textureQueryLod (global 2-component vector of float)
0:177          'samp2Ds' (uniform sampler2DShadow)
0:177          'pf2' (temp 2-component vector of float)
0:178      move second child to first child (temp 2-component vector of float)
0:178        'lod' (temp 2-component vector of float)
0:178        textureQueryLod (global 2-component vector of float)
0:178          'sampCubes' (uniform samplerCubeShadow)
0:178          'pf3' (temp 3-component vector of float)
0:179      move second child to first child (temp 2-component vector of float)
0:179        'lod' (temp 2-component vector of float)
0:179        textureQueryLod (global 2-component vector of float)
0:179          'samp1DAs' (uniform sampler1DArrayShadow)
0:179          'pf' (temp float)
0:180      move second child to first child (temp 2-component vector of float)
0:180        'lod' (temp 2-component vector of float)
0:180        textureQueryLod (global 2-component vector of float)
0:180          'samp2DAs' (uniform sampler2DArrayShadow)
0:180          'pf2' (temp 2-component vector of float)
0:181      move second child to first child (temp 2-component vector of float)
0:181        'lod' (temp 2-component vector of float)
0:181        textureQueryLod (global 2-component vector of float)
0:181          'sampCubeAs' (uniform samplerCubeArrayShadow)
0:181          'pf3' (temp 3-component vector of float)
0:183      'lod' (temp 2-component vector of float)
0:184      'lod' (temp 2-component vector of float)
0:?   Linker Objects
0:?     'c2D' (smooth in 2-component vector of float)
0:?     'i' (flat in int)
0:?     'outp' (out 4-component vector of float)
0:?     'arrayedSampler' (uniform 5-element array of sampler2D)
0:?     'samp2dr' (uniform usampler2DRect)
0:?     'isamp2DA' (uniform isampler2DArray)
0:?     'gl_ClipDistance' (smooth in 4-element array of float ClipDistance)
0:?     'vl' (layout(location=4 ) smooth in 4-component vector of float)
0:?     'vl2' (layout(location=6 ) smooth in 4-component vector of float)
0:?     'uv3' (layout(location=3 ) uniform 3-component vector of float)
0:?     'anon@0' (in block{in float FogFragCoord gl_FogFragCoord, in 1-element array of 4-component vector of float TexCoord gl_TexCoord, smooth in 4-component vector of float Color gl_Color, in 4-component vector of float SecondaryColor gl_SecondaryColor})
0:?     'gl_FragCoord' (gl_FragCoord 4-component vector of float FragCoord)
0:?     'u2drs' (uniform sampler2DRectShadow)
0:?     'patchIn' (smooth patch in 4-component vector of float)
0:?     'patchOut' (patch out 4-component vector of float)
0:?     'in1' (smooth in float)
0:?     'in2' (smooth in 2-component vector of float)
0:?     'in3' (smooth in 3-component vector of float)
0:?     'in4' (smooth in 4-component vector of float)
0:?     'colorSampIn' (smooth sample in 4-component vector of float)
0:?     'colorSampleBad' (sample out 4-component vector of float)
0:?     'colorfsi' (noperspective in 4-component vector of float)
0:?     'sampInArray' (smooth sample in 4-element array of 3-component vector of float)
0:?     'scalarIn' (smooth in float)
0:?     'colorfc' (centroid flat in 2-component vector of float)
0:?     's1' (smooth in structure{global float x})
0:?     's2' (sample temp structure{global float x})
0:?     'samp1D' (uniform sampler1D)
0:?     'isamp2D' (uniform isampler2D)
0:?     'usamp3D' (uniform usampler3D)
0:?     'sampCube' (uniform samplerCube)
0:?     'isamp1DA' (uniform isampler1DArray)
0:?     'usamp2DA' (uniform usampler2DArray)
0:?     'isampCubeA' (uniform isamplerCubeArray)
0:?     'samp1Ds' (uniform sampler1DShadow)
0:?     'samp2Ds' (uniform sampler2DShadow)
0:?     'sampCubes' (uniform samplerCubeShadow)
0:?     'samp1DAs' (uniform sampler1DArrayShadow)
0:?     'samp2DAs' (uniform sampler2DArrayShadow)
0:?     'sampCubeAs' (uniform samplerCubeArrayShadow)
0:?     'sampBuf' (uniform samplerBuffer)
0:?     'sampRect' (uniform sampler2DRect)