aboutsummaryrefslogtreecommitdiff
path: root/Test/baseResults/hlsl.texture.struct.frag.out
blob: ba632bed2a7ada0d6b3d8c46695807b1372b2d3a (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
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
hlsl.texture.struct.frag
Shader version: 500
gl_FragCoord origin is upper left
0:? Sequence
0:38  Function Definition: fn1(t2-tx-struct0-1; ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:38    Function Parameters: 
0:38      't1' ( in texture2D)
0:?     Sequence
0:38      Branch: Return with expression
0:38        Sequence
0:38          move second child to first child ( temp 4-component vector of float)
0:38            '@sampleResultShadow' ( temp 4-component vector of float)
0:?             texture ( temp 4-component vector of float)
0:38              Construct combined texture-sampler ( temp sampler2D)
0:38                't1' ( in texture2D)
0:38                'g_sSamp' ( uniform sampler)
0:38              Constant:
0:38                0.600000
0:38                0.610000
0:38          move second child to first child ( temp float)
0:38            c0: direct index for structure ( temp float)
0:38              '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:38              Constant:
0:38                0 (const uint)
0:38            direct index ( temp float)
0:38              '@sampleResultShadow' ( temp 4-component vector of float)
0:38              Constant:
0:38                0 (const uint)
0:38          move second child to first child ( temp float)
0:38            direct index ( temp float)
0:38              c1: direct index for structure ( temp 2-component vector of float)
0:38                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:38                Constant:
0:38                  1 (const uint)
0:38              Constant:
0:38                0 (const int)
0:38            direct index ( temp float)
0:38              '@sampleResultShadow' ( temp 4-component vector of float)
0:38              Constant:
0:38                1 (const uint)
0:38          move second child to first child ( temp float)
0:38            direct index ( temp float)
0:38              c1: direct index for structure ( temp 2-component vector of float)
0:38                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:38                Constant:
0:38                  1 (const uint)
0:38              Constant:
0:38                1 (const int)
0:38            direct index ( temp float)
0:38              '@sampleResultShadow' ( temp 4-component vector of float)
0:38              Constant:
0:38                2 (const uint)
0:38          move second child to first child ( temp float)
0:38            c2: direct index for structure ( temp float)
0:38              '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:38              Constant:
0:38                2 (const uint)
0:38            direct index ( temp float)
0:38              '@sampleResultShadow' ( temp 4-component vector of float)
0:38              Constant:
0:38                3 (const uint)
0:38          '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:39  Function Definition: fn1(t2-tx-struct1-1; ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:39    Function Parameters: 
0:39      't2' ( in texture2D)
0:?     Sequence
0:39      Branch: Return with expression
0:39        Sequence
0:39          move second child to first child ( temp 4-component vector of float)
0:39            '@sampleResultShadow' ( temp 4-component vector of float)
0:?             texture ( temp 4-component vector of float)
0:39              Construct combined texture-sampler ( temp sampler2D)
0:39                't2' ( in texture2D)
0:39                'g_sSamp' ( uniform sampler)
0:39              Constant:
0:39                0.600000
0:39                0.610000
0:39          move second child to first child ( temp float)
0:39            c0: direct index for structure ( temp float)
0:39              '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:39              Constant:
0:39                0 (const uint)
0:39            direct index ( temp float)
0:39              '@sampleResultShadow' ( temp 4-component vector of float)
0:39              Constant:
0:39                0 (const uint)
0:39          move second child to first child ( temp float)
0:39            direct index ( temp float)
0:39              c1: direct index for structure ( temp 3-component vector of float)
0:39                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:39                Constant:
0:39                  1 (const uint)
0:39              Constant:
0:39                0 (const int)
0:39            direct index ( temp float)
0:39              '@sampleResultShadow' ( temp 4-component vector of float)
0:39              Constant:
0:39                1 (const uint)
0:39          move second child to first child ( temp float)
0:39            direct index ( temp float)
0:39              c1: direct index for structure ( temp 3-component vector of float)
0:39                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:39                Constant:
0:39                  1 (const uint)
0:39              Constant:
0:39                1 (const int)
0:39            direct index ( temp float)
0:39              '@sampleResultShadow' ( temp 4-component vector of float)
0:39              Constant:
0:39                2 (const uint)
0:39          move second child to first child ( temp float)
0:39            direct index ( temp float)
0:39              c1: direct index for structure ( temp 3-component vector of float)
0:39                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:39                Constant:
0:39                  1 (const uint)
0:39              Constant:
0:39                2 (const int)
0:39            direct index ( temp float)
0:39              '@sampleResultShadow' ( temp 4-component vector of float)
0:39              Constant:
0:39                3 (const uint)
0:39          '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:42  Function Definition: @main( ( temp 4-component vector of float)
0:42    Function Parameters: 
0:?     Sequence
0:43      Sequence
0:43        move second child to first child ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:43          's1' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:43          Sequence
0:43            move second child to first child ( temp 4-component vector of float)
0:43              '@sampleResultShadow' ( temp 4-component vector of float)
0:?               texture ( temp 4-component vector of float)
0:43                Construct combined texture-sampler ( temp sampler2D)
0:43                  'g_tTex2s1' ( uniform texture2D)
0:43                  'g_sSamp' ( uniform sampler)
0:43                Constant:
0:43                  0.100000
0:43                  0.110000
0:43            move second child to first child ( temp float)
0:43              c0: direct index for structure ( temp float)
0:43                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:43                Constant:
0:43                  0 (const uint)
0:43              direct index ( temp float)
0:43                '@sampleResultShadow' ( temp 4-component vector of float)
0:43                Constant:
0:43                  0 (const uint)
0:43            move second child to first child ( temp float)
0:43              direct index ( temp float)
0:43                c1: direct index for structure ( temp 2-component vector of float)
0:43                  '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:43                  Constant:
0:43                    1 (const uint)
0:43                Constant:
0:43                  0 (const int)
0:43              direct index ( temp float)
0:43                '@sampleResultShadow' ( temp 4-component vector of float)
0:43                Constant:
0:43                  1 (const uint)
0:43            move second child to first child ( temp float)
0:43              direct index ( temp float)
0:43                c1: direct index for structure ( temp 2-component vector of float)
0:43                  '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:43                  Constant:
0:43                    1 (const uint)
0:43                Constant:
0:43                  1 (const int)
0:43              direct index ( temp float)
0:43                '@sampleResultShadow' ( temp 4-component vector of float)
0:43                Constant:
0:43                  2 (const uint)
0:43            move second child to first child ( temp float)
0:43              c2: direct index for structure ( temp float)
0:43                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:43                Constant:
0:43                  2 (const uint)
0:43              direct index ( temp float)
0:43                '@sampleResultShadow' ( temp 4-component vector of float)
0:43                Constant:
0:43                  3 (const uint)
0:43            '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:44      Sequence
0:44        move second child to first child ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:44          's2' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:44          Sequence
0:44            move second child to first child ( temp 4-component vector of float)
0:44              '@sampleResultShadow' ( temp 4-component vector of float)
0:?               texture ( temp 4-component vector of float)
0:44                Construct combined texture-sampler ( temp sampler2D)
0:44                  'g_tTex2s2' ( uniform texture2D)
0:44                  'g_sSamp' ( uniform sampler)
0:44                Constant:
0:44                  0.200000
0:44                  0.210000
0:44            move second child to first child ( temp float)
0:44              c0: direct index for structure ( temp float)
0:44                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:44                Constant:
0:44                  0 (const uint)
0:44              direct index ( temp float)
0:44                '@sampleResultShadow' ( temp 4-component vector of float)
0:44                Constant:
0:44                  0 (const uint)
0:44            move second child to first child ( temp float)
0:44              direct index ( temp float)
0:44                c1: direct index for structure ( temp 3-component vector of float)
0:44                  '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:44                  Constant:
0:44                    1 (const uint)
0:44                Constant:
0:44                  0 (const int)
0:44              direct index ( temp float)
0:44                '@sampleResultShadow' ( temp 4-component vector of float)
0:44                Constant:
0:44                  1 (const uint)
0:44            move second child to first child ( temp float)
0:44              direct index ( temp float)
0:44                c1: direct index for structure ( temp 3-component vector of float)
0:44                  '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:44                  Constant:
0:44                    1 (const uint)
0:44                Constant:
0:44                  1 (const int)
0:44              direct index ( temp float)
0:44                '@sampleResultShadow' ( temp 4-component vector of float)
0:44                Constant:
0:44                  2 (const uint)
0:44            move second child to first child ( temp float)
0:44              direct index ( temp float)
0:44                c1: direct index for structure ( temp 3-component vector of float)
0:44                  '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:44                  Constant:
0:44                    1 (const uint)
0:44                Constant:
0:44                  2 (const int)
0:44              direct index ( temp float)
0:44                '@sampleResultShadow' ( temp 4-component vector of float)
0:44                Constant:
0:44                  3 (const uint)
0:44            '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:45      Sequence
0:45        move second child to first child ( temp structure{ temp 2-component vector of float c0,  temp 1-component vector of float c1})
0:45          's3' ( temp structure{ temp 2-component vector of float c0,  temp 1-component vector of float c1})
0:45          Sequence
0:45            move second child to first child ( temp 4-component vector of float)
0:45              '@sampleResultShadow' ( temp 4-component vector of float)
0:?               texture ( temp 4-component vector of float)
0:45                Construct combined texture-sampler ( temp sampler2D)
0:45                  'g_tTex2s3' ( uniform texture2D)
0:45                  'g_sSamp' ( uniform sampler)
0:45                Constant:
0:45                  0.300000
0:45                  0.310000
0:45            move second child to first child ( temp float)
0:45              direct index ( temp float)
0:45                c0: direct index for structure ( temp 2-component vector of float)
0:45                  '@sampleStructTemp' ( temp structure{ temp 2-component vector of float c0,  temp 1-component vector of float c1})
0:45                  Constant:
0:45                    0 (const uint)
0:45                Constant:
0:45                  0 (const int)
0:45              direct index ( temp float)
0:45                '@sampleResultShadow' ( temp 4-component vector of float)
0:45                Constant:
0:45                  0 (const uint)
0:45            move second child to first child ( temp float)
0:45              direct index ( temp float)
0:45                c0: direct index for structure ( temp 2-component vector of float)
0:45                  '@sampleStructTemp' ( temp structure{ temp 2-component vector of float c0,  temp 1-component vector of float c1})
0:45                  Constant:
0:45                    0 (const uint)
0:45                Constant:
0:45                  1 (const int)
0:45              direct index ( temp float)
0:45                '@sampleResultShadow' ( temp 4-component vector of float)
0:45                Constant:
0:45                  1 (const uint)
0:45            move second child to first child ( temp float)
0:45              direct index ( temp float)
0:45                c1: direct index for structure ( temp 1-component vector of float)
0:45                  '@sampleStructTemp' ( temp structure{ temp 2-component vector of float c0,  temp 1-component vector of float c1})
0:45                  Constant:
0:45                    1 (const uint)
0:45                Constant:
0:45                  0 (const int)
0:45              direct index ( temp float)
0:45                '@sampleResultShadow' ( temp 4-component vector of float)
0:45                Constant:
0:45                  2 (const uint)
0:45            '@sampleStructTemp' ( temp structure{ temp 2-component vector of float c0,  temp 1-component vector of float c1})
0:46      Sequence
0:46        move second child to first child ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:46          's4' ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:46          Sequence
0:46            move second child to first child ( temp 4-component vector of int)
0:46              '@sampleResultShadow' ( temp 4-component vector of int)
0:?               texture ( temp 4-component vector of int)
0:46                Construct combined texture-sampler ( temp isampler2D)
0:46                  'g_tTex2s4' ( uniform itexture2D)
0:46                  'g_sSamp' ( uniform sampler)
0:46                Constant:
0:46                  0.400000
0:46                  0.410000
0:46            move second child to first child ( temp int)
0:46              c0: direct index for structure ( temp int)
0:46                '@sampleStructTemp' ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:46                Constant:
0:46                  0 (const uint)
0:46              direct index ( temp int)
0:46                '@sampleResultShadow' ( temp 4-component vector of int)
0:46                Constant:
0:46                  0 (const uint)
0:46            move second child to first child ( temp float)
0:46              direct index ( temp float)
0:46                c1: direct index for structure ( temp 2-component vector of int)
0:46                  '@sampleStructTemp' ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:46                  Constant:
0:46                    1 (const uint)
0:46                Constant:
0:46                  0 (const int)
0:46              Convert int to float ( temp float)
0:46                direct index ( temp int)
0:46                  '@sampleResultShadow' ( temp 4-component vector of int)
0:46                  Constant:
0:46                    1 (const uint)
0:46            move second child to first child ( temp float)
0:46              direct index ( temp float)
0:46                c1: direct index for structure ( temp 2-component vector of int)
0:46                  '@sampleStructTemp' ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:46                  Constant:
0:46                    1 (const uint)
0:46                Constant:
0:46                  1 (const int)
0:46              Convert int to float ( temp float)
0:46                direct index ( temp int)
0:46                  '@sampleResultShadow' ( temp 4-component vector of int)
0:46                  Constant:
0:46                    2 (const uint)
0:46            move second child to first child ( temp int)
0:46              c2: direct index for structure ( temp int)
0:46                '@sampleStructTemp' ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:46                Constant:
0:46                  2 (const uint)
0:46              direct index ( temp int)
0:46                '@sampleResultShadow' ( temp 4-component vector of int)
0:46                Constant:
0:46                  3 (const uint)
0:46            '@sampleStructTemp' ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:47      Sequence
0:47        move second child to first child ( temp structure{ temp uint c0,  temp uint c1})
0:47          's5' ( temp structure{ temp uint c0,  temp uint c1})
0:47          Sequence
0:47            move second child to first child ( temp 4-component vector of uint)
0:47              '@sampleResultShadow' ( temp 4-component vector of uint)
0:?               texture ( temp 4-component vector of uint)
0:47                Construct combined texture-sampler ( temp usampler2D)
0:47                  'g_tTex2s5' ( uniform utexture2D)
0:47                  'g_sSamp' ( uniform sampler)
0:47                Constant:
0:47                  0.500000
0:47                  0.510000
0:47            move second child to first child ( temp uint)
0:47              c0: direct index for structure ( temp uint)
0:47                '@sampleStructTemp' ( temp structure{ temp uint c0,  temp uint c1})
0:47                Constant:
0:47                  0 (const uint)
0:47              direct index ( temp uint)
0:47                '@sampleResultShadow' ( temp 4-component vector of uint)
0:47                Constant:
0:47                  0 (const uint)
0:47            move second child to first child ( temp uint)
0:47              c1: direct index for structure ( temp uint)
0:47                '@sampleStructTemp' ( temp structure{ temp uint c0,  temp uint c1})
0:47                Constant:
0:47                  1 (const uint)
0:47              direct index ( temp uint)
0:47                '@sampleResultShadow' ( temp 4-component vector of uint)
0:47                Constant:
0:47                  1 (const uint)
0:47            '@sampleStructTemp' ( temp structure{ temp uint c0,  temp uint c1})
0:49      Sequence
0:49        move second child to first child ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:49          'r0' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:49          Function Call: fn1(t2-tx-struct0-1; ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:49            'g_tTex2s1' ( uniform texture2D)
0:50      Sequence
0:50        move second child to first child ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:50          'r1' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:50          Function Call: fn1(t2-tx-struct1-1; ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:50            'g_tTex2s2' ( uniform texture2D)
0:51      Sequence
0:51        move second child to first child ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:51          'r2' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:51          Function Call: fn1(t2-tx-struct0-1; ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:51            'g_tTex2s1a' ( uniform texture2D)
0:53      Branch: Return with expression
0:53        Constant:
0:53          0.000000
0:53          0.000000
0:53          0.000000
0:53          0.000000
0:42  Function Definition: main( ( temp void)
0:42    Function Parameters: 
0:?     Sequence
0:42      move second child to first child ( temp 4-component vector of float)
0:?         '@entryPointOutput' (layout( location=0) out 4-component vector of float)
0:42        Function Call: @main( ( temp 4-component vector of float)
0:?   Linker Objects
0:?     'g_sSamp' ( uniform sampler)
0:?     'g_tTex2s1' ( uniform texture2D)
0:?     'g_tTex2s2' ( uniform texture2D)
0:?     'g_tTex2s3' ( uniform texture2D)
0:?     'g_tTex2s4' ( uniform itexture2D)
0:?     'g_tTex2s5' ( uniform utexture2D)
0:?     'g_tTex2s1a' ( uniform texture2D)
0:?     '@entryPointOutput' (layout( location=0) out 4-component vector of float)


Linked fragment stage:


Shader version: 500
gl_FragCoord origin is upper left
0:? Sequence
0:38  Function Definition: fn1(t2-tx-struct0-1; ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:38    Function Parameters: 
0:38      't1' ( in texture2D)
0:?     Sequence
0:38      Branch: Return with expression
0:38        Sequence
0:38          move second child to first child ( temp 4-component vector of float)
0:38            '@sampleResultShadow' ( temp 4-component vector of float)
0:?             texture ( temp 4-component vector of float)
0:38              Construct combined texture-sampler ( temp sampler2D)
0:38                't1' ( in texture2D)
0:38                'g_sSamp' ( uniform sampler)
0:38              Constant:
0:38                0.600000
0:38                0.610000
0:38          move second child to first child ( temp float)
0:38            c0: direct index for structure ( temp float)
0:38              '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:38              Constant:
0:38                0 (const uint)
0:38            direct index ( temp float)
0:38              '@sampleResultShadow' ( temp 4-component vector of float)
0:38              Constant:
0:38                0 (const uint)
0:38          move second child to first child ( temp float)
0:38            direct index ( temp float)
0:38              c1: direct index for structure ( temp 2-component vector of float)
0:38                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:38                Constant:
0:38                  1 (const uint)
0:38              Constant:
0:38                0 (const int)
0:38            direct index ( temp float)
0:38              '@sampleResultShadow' ( temp 4-component vector of float)
0:38              Constant:
0:38                1 (const uint)
0:38          move second child to first child ( temp float)
0:38            direct index ( temp float)
0:38              c1: direct index for structure ( temp 2-component vector of float)
0:38                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:38                Constant:
0:38                  1 (const uint)
0:38              Constant:
0:38                1 (const int)
0:38            direct index ( temp float)
0:38              '@sampleResultShadow' ( temp 4-component vector of float)
0:38              Constant:
0:38                2 (const uint)
0:38          move second child to first child ( temp float)
0:38            c2: direct index for structure ( temp float)
0:38              '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:38              Constant:
0:38                2 (const uint)
0:38            direct index ( temp float)
0:38              '@sampleResultShadow' ( temp 4-component vector of float)
0:38              Constant:
0:38                3 (const uint)
0:38          '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:39  Function Definition: fn1(t2-tx-struct1-1; ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:39    Function Parameters: 
0:39      't2' ( in texture2D)
0:?     Sequence
0:39      Branch: Return with expression
0:39        Sequence
0:39          move second child to first child ( temp 4-component vector of float)
0:39            '@sampleResultShadow' ( temp 4-component vector of float)
0:?             texture ( temp 4-component vector of float)
0:39              Construct combined texture-sampler ( temp sampler2D)
0:39                't2' ( in texture2D)
0:39                'g_sSamp' ( uniform sampler)
0:39              Constant:
0:39                0.600000
0:39                0.610000
0:39          move second child to first child ( temp float)
0:39            c0: direct index for structure ( temp float)
0:39              '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:39              Constant:
0:39                0 (const uint)
0:39            direct index ( temp float)
0:39              '@sampleResultShadow' ( temp 4-component vector of float)
0:39              Constant:
0:39                0 (const uint)
0:39          move second child to first child ( temp float)
0:39            direct index ( temp float)
0:39              c1: direct index for structure ( temp 3-component vector of float)
0:39                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:39                Constant:
0:39                  1 (const uint)
0:39              Constant:
0:39                0 (const int)
0:39            direct index ( temp float)
0:39              '@sampleResultShadow' ( temp 4-component vector of float)
0:39              Constant:
0:39                1 (const uint)
0:39          move second child to first child ( temp float)
0:39            direct index ( temp float)
0:39              c1: direct index for structure ( temp 3-component vector of float)
0:39                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:39                Constant:
0:39                  1 (const uint)
0:39              Constant:
0:39                1 (const int)
0:39            direct index ( temp float)
0:39              '@sampleResultShadow' ( temp 4-component vector of float)
0:39              Constant:
0:39                2 (const uint)
0:39          move second child to first child ( temp float)
0:39            direct index ( temp float)
0:39              c1: direct index for structure ( temp 3-component vector of float)
0:39                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:39                Constant:
0:39                  1 (const uint)
0:39              Constant:
0:39                2 (const int)
0:39            direct index ( temp float)
0:39              '@sampleResultShadow' ( temp 4-component vector of float)
0:39              Constant:
0:39                3 (const uint)
0:39          '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:42  Function Definition: @main( ( temp 4-component vector of float)
0:42    Function Parameters: 
0:?     Sequence
0:43      Sequence
0:43        move second child to first child ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:43          's1' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:43          Sequence
0:43            move second child to first child ( temp 4-component vector of float)
0:43              '@sampleResultShadow' ( temp 4-component vector of float)
0:?               texture ( temp 4-component vector of float)
0:43                Construct combined texture-sampler ( temp sampler2D)
0:43                  'g_tTex2s1' ( uniform texture2D)
0:43                  'g_sSamp' ( uniform sampler)
0:43                Constant:
0:43                  0.100000
0:43                  0.110000
0:43            move second child to first child ( temp float)
0:43              c0: direct index for structure ( temp float)
0:43                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:43                Constant:
0:43                  0 (const uint)
0:43              direct index ( temp float)
0:43                '@sampleResultShadow' ( temp 4-component vector of float)
0:43                Constant:
0:43                  0 (const uint)
0:43            move second child to first child ( temp float)
0:43              direct index ( temp float)
0:43                c1: direct index for structure ( temp 2-component vector of float)
0:43                  '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:43                  Constant:
0:43                    1 (const uint)
0:43                Constant:
0:43                  0 (const int)
0:43              direct index ( temp float)
0:43                '@sampleResultShadow' ( temp 4-component vector of float)
0:43                Constant:
0:43                  1 (const uint)
0:43            move second child to first child ( temp float)
0:43              direct index ( temp float)
0:43                c1: direct index for structure ( temp 2-component vector of float)
0:43                  '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:43                  Constant:
0:43                    1 (const uint)
0:43                Constant:
0:43                  1 (const int)
0:43              direct index ( temp float)
0:43                '@sampleResultShadow' ( temp 4-component vector of float)
0:43                Constant:
0:43                  2 (const uint)
0:43            move second child to first child ( temp float)
0:43              c2: direct index for structure ( temp float)
0:43                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:43                Constant:
0:43                  2 (const uint)
0:43              direct index ( temp float)
0:43                '@sampleResultShadow' ( temp 4-component vector of float)
0:43                Constant:
0:43                  3 (const uint)
0:43            '@sampleStructTemp' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:44      Sequence
0:44        move second child to first child ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:44          's2' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:44          Sequence
0:44            move second child to first child ( temp 4-component vector of float)
0:44              '@sampleResultShadow' ( temp 4-component vector of float)
0:?               texture ( temp 4-component vector of float)
0:44                Construct combined texture-sampler ( temp sampler2D)
0:44                  'g_tTex2s2' ( uniform texture2D)
0:44                  'g_sSamp' ( uniform sampler)
0:44                Constant:
0:44                  0.200000
0:44                  0.210000
0:44            move second child to first child ( temp float)
0:44              c0: direct index for structure ( temp float)
0:44                '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:44                Constant:
0:44                  0 (const uint)
0:44              direct index ( temp float)
0:44                '@sampleResultShadow' ( temp 4-component vector of float)
0:44                Constant:
0:44                  0 (const uint)
0:44            move second child to first child ( temp float)
0:44              direct index ( temp float)
0:44                c1: direct index for structure ( temp 3-component vector of float)
0:44                  '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:44                  Constant:
0:44                    1 (const uint)
0:44                Constant:
0:44                  0 (const int)
0:44              direct index ( temp float)
0:44                '@sampleResultShadow' ( temp 4-component vector of float)
0:44                Constant:
0:44                  1 (const uint)
0:44            move second child to first child ( temp float)
0:44              direct index ( temp float)
0:44                c1: direct index for structure ( temp 3-component vector of float)
0:44                  '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:44                  Constant:
0:44                    1 (const uint)
0:44                Constant:
0:44                  1 (const int)
0:44              direct index ( temp float)
0:44                '@sampleResultShadow' ( temp 4-component vector of float)
0:44                Constant:
0:44                  2 (const uint)
0:44            move second child to first child ( temp float)
0:44              direct index ( temp float)
0:44                c1: direct index for structure ( temp 3-component vector of float)
0:44                  '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:44                  Constant:
0:44                    1 (const uint)
0:44                Constant:
0:44                  2 (const int)
0:44              direct index ( temp float)
0:44                '@sampleResultShadow' ( temp 4-component vector of float)
0:44                Constant:
0:44                  3 (const uint)
0:44            '@sampleStructTemp' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:45      Sequence
0:45        move second child to first child ( temp structure{ temp 2-component vector of float c0,  temp 1-component vector of float c1})
0:45          's3' ( temp structure{ temp 2-component vector of float c0,  temp 1-component vector of float c1})
0:45          Sequence
0:45            move second child to first child ( temp 4-component vector of float)
0:45              '@sampleResultShadow' ( temp 4-component vector of float)
0:?               texture ( temp 4-component vector of float)
0:45                Construct combined texture-sampler ( temp sampler2D)
0:45                  'g_tTex2s3' ( uniform texture2D)
0:45                  'g_sSamp' ( uniform sampler)
0:45                Constant:
0:45                  0.300000
0:45                  0.310000
0:45            move second child to first child ( temp float)
0:45              direct index ( temp float)
0:45                c0: direct index for structure ( temp 2-component vector of float)
0:45                  '@sampleStructTemp' ( temp structure{ temp 2-component vector of float c0,  temp 1-component vector of float c1})
0:45                  Constant:
0:45                    0 (const uint)
0:45                Constant:
0:45                  0 (const int)
0:45              direct index ( temp float)
0:45                '@sampleResultShadow' ( temp 4-component vector of float)
0:45                Constant:
0:45                  0 (const uint)
0:45            move second child to first child ( temp float)
0:45              direct index ( temp float)
0:45                c0: direct index for structure ( temp 2-component vector of float)
0:45                  '@sampleStructTemp' ( temp structure{ temp 2-component vector of float c0,  temp 1-component vector of float c1})
0:45                  Constant:
0:45                    0 (const uint)
0:45                Constant:
0:45                  1 (const int)
0:45              direct index ( temp float)
0:45                '@sampleResultShadow' ( temp 4-component vector of float)
0:45                Constant:
0:45                  1 (const uint)
0:45            move second child to first child ( temp float)
0:45              direct index ( temp float)
0:45                c1: direct index for structure ( temp 1-component vector of float)
0:45                  '@sampleStructTemp' ( temp structure{ temp 2-component vector of float c0,  temp 1-component vector of float c1})
0:45                  Constant:
0:45                    1 (const uint)
0:45                Constant:
0:45                  0 (const int)
0:45              direct index ( temp float)
0:45                '@sampleResultShadow' ( temp 4-component vector of float)
0:45                Constant:
0:45                  2 (const uint)
0:45            '@sampleStructTemp' ( temp structure{ temp 2-component vector of float c0,  temp 1-component vector of float c1})
0:46      Sequence
0:46        move second child to first child ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:46          's4' ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:46          Sequence
0:46            move second child to first child ( temp 4-component vector of int)
0:46              '@sampleResultShadow' ( temp 4-component vector of int)
0:?               texture ( temp 4-component vector of int)
0:46                Construct combined texture-sampler ( temp isampler2D)
0:46                  'g_tTex2s4' ( uniform itexture2D)
0:46                  'g_sSamp' ( uniform sampler)
0:46                Constant:
0:46                  0.400000
0:46                  0.410000
0:46            move second child to first child ( temp int)
0:46              c0: direct index for structure ( temp int)
0:46                '@sampleStructTemp' ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:46                Constant:
0:46                  0 (const uint)
0:46              direct index ( temp int)
0:46                '@sampleResultShadow' ( temp 4-component vector of int)
0:46                Constant:
0:46                  0 (const uint)
0:46            move second child to first child ( temp float)
0:46              direct index ( temp float)
0:46                c1: direct index for structure ( temp 2-component vector of int)
0:46                  '@sampleStructTemp' ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:46                  Constant:
0:46                    1 (const uint)
0:46                Constant:
0:46                  0 (const int)
0:46              Convert int to float ( temp float)
0:46                direct index ( temp int)
0:46                  '@sampleResultShadow' ( temp 4-component vector of int)
0:46                  Constant:
0:46                    1 (const uint)
0:46            move second child to first child ( temp float)
0:46              direct index ( temp float)
0:46                c1: direct index for structure ( temp 2-component vector of int)
0:46                  '@sampleStructTemp' ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:46                  Constant:
0:46                    1 (const uint)
0:46                Constant:
0:46                  1 (const int)
0:46              Convert int to float ( temp float)
0:46                direct index ( temp int)
0:46                  '@sampleResultShadow' ( temp 4-component vector of int)
0:46                  Constant:
0:46                    2 (const uint)
0:46            move second child to first child ( temp int)
0:46              c2: direct index for structure ( temp int)
0:46                '@sampleStructTemp' ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:46                Constant:
0:46                  2 (const uint)
0:46              direct index ( temp int)
0:46                '@sampleResultShadow' ( temp 4-component vector of int)
0:46                Constant:
0:46                  3 (const uint)
0:46            '@sampleStructTemp' ( temp structure{ temp int c0,  temp 2-component vector of int c1,  temp int c2})
0:47      Sequence
0:47        move second child to first child ( temp structure{ temp uint c0,  temp uint c1})
0:47          's5' ( temp structure{ temp uint c0,  temp uint c1})
0:47          Sequence
0:47            move second child to first child ( temp 4-component vector of uint)
0:47              '@sampleResultShadow' ( temp 4-component vector of uint)
0:?               texture ( temp 4-component vector of uint)
0:47                Construct combined texture-sampler ( temp usampler2D)
0:47                  'g_tTex2s5' ( uniform utexture2D)
0:47                  'g_sSamp' ( uniform sampler)
0:47                Constant:
0:47                  0.500000
0:47                  0.510000
0:47            move second child to first child ( temp uint)
0:47              c0: direct index for structure ( temp uint)
0:47                '@sampleStructTemp' ( temp structure{ temp uint c0,  temp uint c1})
0:47                Constant:
0:47                  0 (const uint)
0:47              direct index ( temp uint)
0:47                '@sampleResultShadow' ( temp 4-component vector of uint)
0:47                Constant:
0:47                  0 (const uint)
0:47            move second child to first child ( temp uint)
0:47              c1: direct index for structure ( temp uint)
0:47                '@sampleStructTemp' ( temp structure{ temp uint c0,  temp uint c1})
0:47                Constant:
0:47                  1 (const uint)
0:47              direct index ( temp uint)
0:47                '@sampleResultShadow' ( temp 4-component vector of uint)
0:47                Constant:
0:47                  1 (const uint)
0:47            '@sampleStructTemp' ( temp structure{ temp uint c0,  temp uint c1})
0:49      Sequence
0:49        move second child to first child ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:49          'r0' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:49          Function Call: fn1(t2-tx-struct0-1; ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:49            'g_tTex2s1' ( uniform texture2D)
0:50      Sequence
0:50        move second child to first child ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:50          'r1' ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:50          Function Call: fn1(t2-tx-struct1-1; ( temp structure{ temp float c0,  temp 3-component vector of float c1})
0:50            'g_tTex2s2' ( uniform texture2D)
0:51      Sequence
0:51        move second child to first child ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:51          'r2' ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:51          Function Call: fn1(t2-tx-struct0-1; ( temp structure{ temp float c0,  temp 2-component vector of float c1,  temp float c2})
0:51            'g_tTex2s1a' ( uniform texture2D)
0:53      Branch: Return with expression
0:53        Constant:
0:53          0.000000
0:53          0.000000
0:53          0.000000
0:53          0.000000
0:42  Function Definition: main( ( temp void)
0:42    Function Parameters: 
0:?     Sequence
0:42      move second child to first child ( temp 4-component vector of float)
0:?         '@entryPointOutput' (layout( location=0) out 4-component vector of float)
0:42        Function Call: @main( ( temp 4-component vector of float)
0:?   Linker Objects
0:?     'g_sSamp' ( uniform sampler)
0:?     'g_tTex2s1' ( uniform texture2D)
0:?     'g_tTex2s2' ( uniform texture2D)
0:?     'g_tTex2s3' ( uniform texture2D)
0:?     'g_tTex2s4' ( uniform itexture2D)
0:?     'g_tTex2s5' ( uniform utexture2D)
0:?     'g_tTex2s1a' ( uniform texture2D)
0:?     '@entryPointOutput' (layout( location=0) out 4-component vector of float)

Validation failed
// Module Version 10000
// Generated by (magic number): 8000b
// Id's are bound by 240

                              Capability Shader
               1:             ExtInstImport  "GLSL.std.450"
                              MemoryModel Logical GLSL450
                              EntryPoint Fragment 4  "main" 238
                              ExecutionMode 4 OriginUpperLeft
                              Source HLSL 500
                              Name 4  "main"
                              Name 10  "s1_t"
                              MemberName 10(s1_t) 0  "c0"
                              MemberName 10(s1_t) 1  "c1"
                              MemberName 10(s1_t) 2  "c2"
                              Name 13  "fn1(t2-tx-struct0-1;"
                              Name 12  "t1"
                              Name 16  "s2_t"
                              MemberName 16(s2_t) 0  "c0"
                              MemberName 16(s2_t) 1  "c1"
                              Name 19  "fn1(t2-tx-struct1-1;"
                              Name 18  "t2"
                              Name 23  "@main("
                              Name 26  "@sampleResultShadow"
                              Name 30  "g_sSamp"
                              Name 39  "@sampleStructTemp"
                              Name 65  "@sampleResultShadow"
                              Name 71  "@sampleStructTemp"
                              Name 87  "s1"
                              Name 88  "@sampleResultShadow"
                              Name 90  "g_tTex2s1"
                              Name 98  "@sampleStructTemp"
                              Name 112  "s2"
                              Name 113  "@sampleResultShadow"
                              Name 114  "g_tTex2s2"
                              Name 122  "@sampleStructTemp"
                              Name 136  "s3_t"
                              MemberName 136(s3_t) 0  "c0"
                              MemberName 136(s3_t) 1  "c1"
                              Name 138  "s3"
                              Name 139  "@sampleResultShadow"
                              Name 140  "g_tTex2s3"
                              Name 148  "@sampleStructTemp"
                              Name 160  "s4_t"
                              MemberName 160(s4_t) 0  "c0"
                              MemberName 160(s4_t) 1  "c1"
                              MemberName 160(s4_t) 2  "c2"
                              Name 162  "s4"
                              Name 165  "@sampleResultShadow"
                              Name 168  "g_tTex2s4"
                              Name 177  "@sampleStructTemp"
                              Name 194  "s5_t"
                              MemberName 194(s5_t) 0  "c0"
                              MemberName 194(s5_t) 1  "c1"
                              Name 196  "s5"
                              Name 199  "@sampleResultShadow"
                              Name 202  "g_tTex2s5"
                              Name 211  "@sampleStructTemp"
                              Name 220  "r0"
                              Name 221  "param"
                              Name 224  "r1"
                              Name 225  "param"
                              Name 228  "r2"
                              Name 229  "g_tTex2s1a"
                              Name 230  "param"
                              Name 238  "@entryPointOutput"
                              Decorate 30(g_sSamp) DescriptorSet 0
                              Decorate 30(g_sSamp) Binding 0
                              Decorate 90(g_tTex2s1) DescriptorSet 0
                              Decorate 90(g_tTex2s1) Binding 1
                              Decorate 114(g_tTex2s2) DescriptorSet 0
                              Decorate 114(g_tTex2s2) Binding 2
                              Decorate 140(g_tTex2s3) DescriptorSet 0
                              Decorate 140(g_tTex2s3) Binding 3
                              Decorate 168(g_tTex2s4) DescriptorSet 0
                              Decorate 168(g_tTex2s4) Binding 4
                              Decorate 202(g_tTex2s5) DescriptorSet 0
                              Decorate 202(g_tTex2s5) Binding 5
                              Decorate 229(g_tTex2s1a) DescriptorSet 0
                              Decorate 229(g_tTex2s1a) Binding 6
                              Decorate 238(@entryPointOutput) Location 0
               2:             TypeVoid
               3:             TypeFunction 2
               6:             TypeFloat 32
               7:             TypeImage 6(float) 2D sampled format:Unknown
               8:             TypePointer Function 7
               9:             TypeVector 6(float) 2
        10(s1_t):             TypeStruct 6(float) 9(fvec2) 6(float)
              11:             TypeFunction 10(s1_t) 8(ptr)
              15:             TypeVector 6(float) 3
        16(s2_t):             TypeStruct 6(float) 15(fvec3)
              17:             TypeFunction 16(s2_t) 8(ptr)
              21:             TypeVector 6(float) 4
              22:             TypeFunction 21(fvec4)
              25:             TypePointer Function 21(fvec4)
              28:             TypeSampler
              29:             TypePointer UniformConstant 28
     30(g_sSamp):     29(ptr) Variable UniformConstant
              32:             TypeSampledImage 7
              34:    6(float) Constant 1058642330
              35:    6(float) Constant 1058810102
              36:    9(fvec2) ConstantComposite 34 35
              38:             TypePointer Function 10(s1_t)
              40:             TypeInt 32 1
              41:     40(int) Constant 0
              42:             TypeInt 32 0
              43:     42(int) Constant 0
              44:             TypePointer Function 6(float)
              48:     40(int) Constant 1
              49:     42(int) Constant 1
              53:     42(int) Constant 2
              57:     40(int) Constant 2
              58:     42(int) Constant 3
              70:             TypePointer Function 16(s2_t)
              89:             TypePointer UniformConstant 7
   90(g_tTex2s1):     89(ptr) Variable UniformConstant
              94:    6(float) Constant 1036831949
              95:    6(float) Constant 1038174126
              96:    9(fvec2) ConstantComposite 94 95
  114(g_tTex2s2):     89(ptr) Variable UniformConstant
             118:    6(float) Constant 1045220557
             119:    6(float) Constant 1045891645
             120:    9(fvec2) ConstantComposite 118 119
       136(s3_t):             TypeStruct 9(fvec2) 6(float)
             137:             TypePointer Function 136(s3_t)
  140(g_tTex2s3):     89(ptr) Variable UniformConstant
             144:    6(float) Constant 1050253722
             145:    6(float) Constant 1050589266
             146:    9(fvec2) ConstantComposite 144 145
             159:             TypeVector 40(int) 2
       160(s4_t):             TypeStruct 40(int) 159(ivec2) 40(int)
             161:             TypePointer Function 160(s4_t)
             163:             TypeVector 40(int) 4
             164:             TypePointer Function 163(ivec4)
             166:             TypeImage 40(int) 2D sampled format:Unknown
             167:             TypePointer UniformConstant 166
  168(g_tTex2s4):    167(ptr) Variable UniformConstant
             171:             TypeSampledImage 166
             173:    6(float) Constant 1053609165
             174:    6(float) Constant 1053944709
             175:    9(fvec2) ConstantComposite 173 174
             178:             TypePointer Function 40(int)
       194(s5_t):             TypeStruct 42(int) 42(int)
             195:             TypePointer Function 194(s5_t)
             197:             TypeVector 42(int) 4
             198:             TypePointer Function 197(ivec4)
             200:             TypeImage 42(int) 2D sampled format:Unknown
             201:             TypePointer UniformConstant 200
  202(g_tTex2s5):    201(ptr) Variable UniformConstant
             205:             TypeSampledImage 200
             207:    6(float) Constant 1056964608
             208:    6(float) Constant 1057132380
             209:    9(fvec2) ConstantComposite 207 208
             212:             TypePointer Function 42(int)
 229(g_tTex2s1a):     89(ptr) Variable UniformConstant
             233:    6(float) Constant 0
             234:   21(fvec4) ConstantComposite 233 233 233 233
             237:             TypePointer Output 21(fvec4)
238(@entryPointOutput):    237(ptr) Variable Output
         4(main):           2 Function None 3
               5:             Label
             239:   21(fvec4) FunctionCall 23(@main()
                              Store 238(@entryPointOutput) 239
                              Return
                              FunctionEnd
13(fn1(t2-tx-struct0-1;):    10(s1_t) Function None 11
          12(t1):      8(ptr) FunctionParameter
              14:             Label
26(@sampleResultShadow):     25(ptr) Variable Function
39(@sampleStructTemp):     38(ptr) Variable Function
              27:           7 Load 12(t1)
              31:          28 Load 30(g_sSamp)
              33:          32 SampledImage 27 31
              37:   21(fvec4) ImageSampleImplicitLod 33 36
                              Store 26(@sampleResultShadow) 37
              45:     44(ptr) AccessChain 26(@sampleResultShadow) 43
              46:    6(float) Load 45
              47:     44(ptr) AccessChain 39(@sampleStructTemp) 41
                              Store 47 46
              50:     44(ptr) AccessChain 26(@sampleResultShadow) 49
              51:    6(float) Load 50
              52:     44(ptr) AccessChain 39(@sampleStructTemp) 48 43
                              Store 52 51
              54:     44(ptr) AccessChain 26(@sampleResultShadow) 53
              55:    6(float) Load 54
              56:     44(ptr) AccessChain 39(@sampleStructTemp) 48 49
                              Store 56 55
              59:     44(ptr) AccessChain 26(@sampleResultShadow) 58
              60:    6(float) Load 59
              61:     44(ptr) AccessChain 39(@sampleStructTemp) 57
                              Store 61 60
              62:    10(s1_t) Load 39(@sampleStructTemp)
                              ReturnValue 62
                              FunctionEnd
19(fn1(t2-tx-struct1-1;):    16(s2_t) Function None 17
          18(t2):      8(ptr) FunctionParameter
              20:             Label
65(@sampleResultShadow):     25(ptr) Variable Function
71(@sampleStructTemp):     70(ptr) Variable Function
              66:           7 Load 18(t2)
              67:          28 Load 30(g_sSamp)
              68:          32 SampledImage 66 67
              69:   21(fvec4) ImageSampleImplicitLod 68 36
                              Store 65(@sampleResultShadow) 69
              72:     44(ptr) AccessChain 65(@sampleResultShadow) 43
              73:    6(float) Load 72
              74:     44(ptr) AccessChain 71(@sampleStructTemp) 41
                              Store 74 73
              75:     44(ptr) AccessChain 65(@sampleResultShadow) 49
              76:    6(float) Load 75
              77:     44(ptr) AccessChain 71(@sampleStructTemp) 48 43
                              Store 77 76
              78:     44(ptr) AccessChain 65(@sampleResultShadow) 53
              79:    6(float) Load 78
              80:     44(ptr) AccessChain 71(@sampleStructTemp) 48 49
                              Store 80 79
              81:     44(ptr) AccessChain 65(@sampleResultShadow) 58
              82:    6(float) Load 81
              83:     44(ptr) AccessChain 71(@sampleStructTemp) 48 53
                              Store 83 82
              84:    16(s2_t) Load 71(@sampleStructTemp)
                              ReturnValue 84
                              FunctionEnd
      23(@main():   21(fvec4) Function None 22
              24:             Label
          87(s1):     38(ptr) Variable Function
88(@sampleResultShadow):     25(ptr) Variable Function
98(@sampleStructTemp):     38(ptr) Variable Function
         112(s2):     70(ptr) Variable Function
113(@sampleResultShadow):     25(ptr) Variable Function
122(@sampleStructTemp):     70(ptr) Variable Function
         138(s3):    137(ptr) Variable Function
139(@sampleResultShadow):     25(ptr) Variable Function
148(@sampleStructTemp):    137(ptr) Variable Function
         162(s4):    161(ptr) Variable Function
165(@sampleResultShadow):    164(ptr) Variable Function
177(@sampleStructTemp):    161(ptr) Variable Function
         196(s5):    195(ptr) Variable Function
199(@sampleResultShadow):    198(ptr) Variable Function
211(@sampleStructTemp):    195(ptr) Variable Function
         220(r0):     38(ptr) Variable Function
      221(param):      8(ptr) Variable Function
         224(r1):     70(ptr) Variable Function
      225(param):      8(ptr) Variable Function
         228(r2):     38(ptr) Variable Function
      230(param):      8(ptr) Variable Function
              91:           7 Load 90(g_tTex2s1)
              92:          28 Load 30(g_sSamp)
              93:          32 SampledImage 91 92
              97:   21(fvec4) ImageSampleImplicitLod 93 96
                              Store 88(@sampleResultShadow) 97
              99:     44(ptr) AccessChain 88(@sampleResultShadow) 43
             100:    6(float) Load 99
             101:     44(ptr) AccessChain 98(@sampleStructTemp) 41
                              Store 101 100
             102:     44(ptr) AccessChain 88(@sampleResultShadow) 49
             103:    6(float) Load 102
             104:     44(ptr) AccessChain 98(@sampleStructTemp) 48 43
                              Store 104 103
             105:     44(ptr) AccessChain 88(@sampleResultShadow) 53
             106:    6(float) Load 105
             107:     44(ptr) AccessChain 98(@sampleStructTemp) 48 49
                              Store 107 106
             108:     44(ptr) AccessChain 88(@sampleResultShadow) 58
             109:    6(float) Load 108
             110:     44(ptr) AccessChain 98(@sampleStructTemp) 57
                              Store 110 109
             111:    10(s1_t) Load 98(@sampleStructTemp)
                              Store 87(s1) 111
             115:           7 Load 114(g_tTex2s2)
             116:          28 Load 30(g_sSamp)
             117:          32 SampledImage 115 116
             121:   21(fvec4) ImageSampleImplicitLod 117 120
                              Store 113(@sampleResultShadow) 121
             123:     44(ptr) AccessChain 113(@sampleResultShadow) 43
             124:    6(float) Load 123
             125:     44(ptr) AccessChain 122(@sampleStructTemp) 41
                              Store 125 124
             126:     44(ptr) AccessChain 113(@sampleResultShadow) 49
             127:    6(float) Load 126
             128:     44(ptr) AccessChain 122(@sampleStructTemp) 48 43
                              Store 128 127
             129:     44(ptr) AccessChain 113(@sampleResultShadow) 53
             130:    6(float) Load 129
             131:     44(ptr) AccessChain 122(@sampleStructTemp) 48 49
                              Store 131 130
             132:     44(ptr) AccessChain 113(@sampleResultShadow) 58
             133:    6(float) Load 132
             134:     44(ptr) AccessChain 122(@sampleStructTemp) 48 53
                              Store 134 133
             135:    16(s2_t) Load 122(@sampleStructTemp)
                              Store 112(s2) 135
             141:           7 Load 140(g_tTex2s3)
             142:          28 Load 30(g_sSamp)
             143:          32 SampledImage 141 142
             147:   21(fvec4) ImageSampleImplicitLod 143 146
                              Store 139(@sampleResultShadow) 147
             149:     44(ptr) AccessChain 139(@sampleResultShadow) 43
             150:    6(float) Load 149
             151:     44(ptr) AccessChain 148(@sampleStructTemp) 41 43
                              Store 151 150
             152:     44(ptr) AccessChain 139(@sampleResultShadow) 49
             153:    6(float) Load 152
             154:     44(ptr) AccessChain 148(@sampleStructTemp) 41 49
                              Store 154 153
             155:     44(ptr) AccessChain 139(@sampleResultShadow) 53
             156:    6(float) Load 155
             157:     44(ptr) AccessChain 148(@sampleStructTemp) 48
                              Store 157 156
             158:   136(s3_t) Load 148(@sampleStructTemp)
                              Store 138(s3) 158
             169:         166 Load 168(g_tTex2s4)
             170:          28 Load 30(g_sSamp)
             172:         171 SampledImage 169 170
             176:  163(ivec4) ImageSampleImplicitLod 172 175
                              Store 165(@sampleResultShadow) 176
             179:    178(ptr) AccessChain 165(@sampleResultShadow) 43
             180:     40(int) Load 179
             181:    178(ptr) AccessChain 177(@sampleStructTemp) 41
                              Store 181 180
             182:    178(ptr) AccessChain 165(@sampleResultShadow) 49
             183:     40(int) Load 182
             184:    6(float) ConvertSToF 183
             185:    178(ptr) AccessChain 177(@sampleStructTemp) 48 43
                              Store 185 184
             186:    178(ptr) AccessChain 165(@sampleResultShadow) 53
             187:     40(int) Load 186
             188:    6(float) ConvertSToF 187
             189:    178(ptr) AccessChain 177(@sampleStructTemp) 48 49
                              Store 189 188
             190:    178(ptr) AccessChain 165(@sampleResultShadow) 58
             191:     40(int) Load 190
             192:    178(ptr) AccessChain 177(@sampleStructTemp) 57
                              Store 192 191
             193:   160(s4_t) Load 177(@sampleStructTemp)
                              Store 162(s4) 193
             203:         200 Load 202(g_tTex2s5)
             204:          28 Load 30(g_sSamp)
             206:         205 SampledImage 203 204
             210:  197(ivec4) ImageSampleImplicitLod 206 209
                              Store 199(@sampleResultShadow) 210
             213:    212(ptr) AccessChain 199(@sampleResultShadow) 43
             214:     42(int) Load 213
             215:    212(ptr) AccessChain 211(@sampleStructTemp) 41
                              Store 215 214
             216:    212(ptr) AccessChain 199(@sampleResultShadow) 49
             217:     42(int) Load 216
             218:    212(ptr) AccessChain 211(@sampleStructTemp) 48
                              Store 218 217
             219:   194(s5_t) Load 211(@sampleStructTemp)
                              Store 196(s5) 219
             222:           7 Load 90(g_tTex2s1)
                              Store 221(param) 222
             223:    10(s1_t) FunctionCall 13(fn1(t2-tx-struct0-1;) 221(param)
                              Store 220(r0) 223
             226:           7 Load 114(g_tTex2s2)
                              Store 225(param) 226
             227:    16(s2_t) FunctionCall 19(fn1(t2-tx-struct1-1;) 225(param)
                              Store 224(r1) 227
             231:           7 Load 229(g_tTex2s1a)
                              Store 230(param) 231
             232:    10(s1_t) FunctionCall 13(fn1(t2-tx-struct0-1;) 230(param)
                              Store 228(r2) 232
                              ReturnValue 234
                              FunctionEnd