UnityEngine.XRModule.cpp
302 KB
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
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
// System.Action`1<System.Boolean>
struct Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD;
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0;
// System.Action`1<UnityEngine.XR.InputDevice>
struct Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7;
// System.Action`1<UnityEngine.XR.MeshGenerationResult>
struct Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C;
// System.Action`1<UnityEngine.XR.XRInputSubsystem>
struct Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6;
// System.Action`1<UnityEngine.XR.XRNodeState>
struct Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.List`1<System.UInt64>
struct List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8;
// System.Collections.Generic.List`1<UnityEngine.XR.MeshInfo>
struct List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661;
// System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState>
struct List_1_tDECBF737A96DF978685F6386C44B9284190E43C7;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.String
struct String_t;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// UnityEngine.ISubsystemDescriptor
struct ISubsystemDescriptor_t5BCD578E4BAD3A0C1DF6C5654720FE7D4420605B;
// UnityEngine.IntegratedSubsystem
struct IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026;
// UnityEngine.IntegratedSubsystemDescriptor`1<System.Object>
struct IntegratedSubsystemDescriptor_1_t26346DD8E0AD1C04F25B94E8AD18577ABA15EBCB;
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.XR.XRDisplaySubsystem>
struct IntegratedSubsystemDescriptor_1_t92C33FD6897AFD92459369C236D3447735C3D6E5;
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.XR.XRInputSubsystem>
struct IntegratedSubsystemDescriptor_1_t13988C31A891A4EAAA0A3C89EC5A51F23584F18B;
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.XR.XRMeshSubsystem>
struct IntegratedSubsystemDescriptor_1_t9CE6049A97B62041547D75D3A8D31B5F02DE7751;
// UnityEngine.IntegratedSubsystem`1<System.Object>
struct IntegratedSubsystem_1_tA39FA5C25840EB481167108B3E02F7F09E901583;
// UnityEngine.IntegratedSubsystem`1<UnityEngine.XR.XRDisplaySubsystemDescriptor>
struct IntegratedSubsystem_1_tA1D5F6FF883C281DC92140F8547E38FBA9A4F7E1;
// UnityEngine.IntegratedSubsystem`1<UnityEngine.XR.XRInputSubsystemDescriptor>
struct IntegratedSubsystem_1_t648AE5E2D40F3159DD68D2AFD4B5ECA29920149D;
// UnityEngine.IntegratedSubsystem`1<UnityEngine.XR.XRMeshSubsystemDescriptor>
struct IntegratedSubsystem_1_t808F7E2ADCA546A132C411EB61297ADCB67BDFC5;
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C;
// UnityEngine.MeshCollider
struct MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE;
// UnityEngine.XR.MeshInfo[]
struct MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2;
// UnityEngine.XR.XRDisplaySubsystem
struct XRDisplaySubsystem_t2E090C1B6925B11C9296DBBAF57F9364AADA13E0;
// UnityEngine.XR.XRDisplaySubsystemDescriptor
struct XRDisplaySubsystemDescriptor_tC24B1C560B0C50AD3094D5F22BFFD25DD7AE6259;
// UnityEngine.XR.XRInputSubsystem
struct XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7;
// UnityEngine.XR.XRInputSubsystemDescriptor
struct XRInputSubsystemDescriptor_t0695204904011F75FF666A5F623C98FBCC163AD5;
// UnityEngine.XR.XRMeshSubsystem
struct XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9;
// UnityEngine.XR.XRMeshSubsystemDescriptor
struct XRMeshSubsystemDescriptor_t714B4140E276BE215234C3BB3F252D6C12A23AFB;
// UnityEngine.XR.XRNodeState[]
struct XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Internal_SubsystemInstances_tB061667F7AEBE0E336E6DE40389E18414A43BB9A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MeshChangeState_t42D58EE953790EC6E1609C4BEB5FC75C680D84E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MeshGenerationStatus_t9EF07FCDC3FA6CC1951DDDED08F361AC02486D73_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MeshVertexAttributes_t108D1D0898F30028DA0D36251BCB889FF471FF58_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TrackingStateEventType_tD5ADDFEA62593966E5D258C959431DB50354B9C9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRDisplaySubsystem_t2E090C1B6925B11C9296DBBAF57F9364AADA13E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral0FB01FF34DC0EFBBA003E466195204CD05E53B40;
IL2CPP_EXTERN_C String_t* _stringLiteral22245389D6EF55C8148C4F722171CE2D37666539;
IL2CPP_EXTERN_C String_t* _stringLiteral7C920AC9C27322B466EC79E3F70C59D0EB2E27E3;
IL2CPP_EXTERN_C String_t* _stringLiteral9C4E8CB62B5C9AA47AEDDAC7C3F9DA543AECB0F9;
IL2CPP_EXTERN_C String_t* _stringLiteralC1C9DAD500E0CECC42C18D4BE98235F5A0F88D78;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_m45E8F9900F9DB395C48A868A7C6A83BDD7FC692F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_m4CB47E8F2868FBE68282A73D1E82C97387CC7224_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_m76AAC7959D7259C4B9B7B271344C095C307FAC20_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_mADC0DCCED2D4577B141EA288C2B3C66FFE15D489_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_mB246C65D547D955CD43C9F82F032CC2CF9C4918B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputTracking_GetNodeStates_m1D99635AA169927E5C00399B44D798F08647823B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InputTracking_InvokeTrackingEvent_mDB5808D84A18FFE3EF4F4707F0291768B59CC111_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IntegratedSubsystemDescriptor_1__ctor_m3B5162617EB2232B4F2453003AF1AD8EBE78021D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IntegratedSubsystemDescriptor_1__ctor_m6117F01E29F54F0CC64A4F7459678F5917DDDAA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IntegratedSubsystemDescriptor_1__ctor_mF72F72B847AC92E53503FA2E6AA6100020B8B371_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IntegratedSubsystem_1__ctor_m6C59A971C471B3036B0A4A948338736212665088_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IntegratedSubsystem_1__ctor_m8BC125DB36F9434B07EFAAF056356DD665057EE3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* IntegratedSubsystem_1__ctor_mBA2862C42655BCC9EDC76EE901CB6500A32DEA9D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mC55E2F641D17BC3D08E6A03E16814B46518C257A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* XRMeshSubsystem_TryGetMeshInfos_m32691622E093BD37877174447CC77D7487E55B00_RuntimeMethod_var;
IL2CPP_EXTERN_C const uint32_t Bone_Equals_m47F29F33D5B4C9512F16A4EF7056F1EBBEF66F8B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Eyes_Equals_m705DC7D7DC029DAC048DB35D0268F6555802A617_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Hand_Equals_mF97E28F0278AEC0B5D19211B05158FD5203EAF10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InputDevice_Equals_m741ED20972E238BC41A52D3AEB43A737E0FC5066_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InputDevices_InvokeConnectionEvent_mF19958B27E9137E368A75B0D73FD1F78881DD821_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InputFeatureUsage_Equals_m471A010DF80FA3BC39B4F89743E9D861852E3FFE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InputTracking_GetNodeStates_m1D99635AA169927E5C00399B44D798F08647823B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InputTracking_InvokeTrackingEvent_mDB5808D84A18FFE3EF4F4707F0291768B59CC111_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InputTracking__cctor_mB8272EBDEAE55941C2F990138EF052BEC85FBF13_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MeshGenerationResult_Equals_m0F47888DAC3E658A94AD392796FBBE990CA8138E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MeshGenerationResult_Equals_m4E7C54861B2C6D79D1FD39E4C4A2F37A27C91194_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MeshId_Equals_m3EB8E8B8FDA84194D7684B76C02686B839CBE8AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MeshId_ToString_m765CD93EFB3D48FC601CC1350A3DBDDD0B55F1A0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MeshId__cctor_m06C4145F5DEB610C1F043FB28127628101C87F9D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MeshInfo_Equals_m72DBC2F9D39A5B19A80C01E74CFD3E9013073414_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MeshInfo_Equals_m8D4CC363A05923F765E32A26F1E595D2B80B5C0D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRDisplaySubsystemDescriptor__ctor_m906C40C1CF91BAD978A4353EC4C4A228E4B07B97_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRDisplaySubsystem_InvokeDisplayFocusChanged_mA8A70A9F25557E6C3757DCB80D8F5149AF86A877_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRDisplaySubsystem__ctor_m165FE35F533B013C640581A901D43F21F5955F05_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRInputSubsystemDescriptor__ctor_m855F6124D0F7637429BB9E4156C12B6C501B41B0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRInputSubsystem_InvokeBoundaryChangedEvent_m969BB48ED88967BF87F7311BFE1EEC45D2302702_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRInputSubsystem_InvokeTrackingOriginUpdatedEvent_mE0A1CD4D24BD66A5F5BE793DD5EF01D94F20973D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRInputSubsystem__ctor_m61D1698F3B14A2EC28BB0EC42912FD47B593EAF3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRMeshSubsystemDescriptor__ctor_m44E44EEF055312E5359F476FBAF42CC330FEC5DD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRMeshSubsystem_InvokeMeshReadyDelegate_m46B89EE8ACC67733B6272C547EDFE828393BE7CE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRMeshSubsystem_TryGetMeshInfos_m32691622E093BD37877174447CC77D7487E55B00_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRMeshSubsystem__ctor_m552EA5F9E0B43C7A30AAB6B3841CE5FBBFA07D2E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRNodeState_TryGet_m1B4C4C8993A23503E69F253589F11458C3388C59_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t XRNodeState_TryGet_mBE55684EC4CA3C034D1E1AD21AA221B70F3048DF_MetadataUsageId;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_t9BDB8612443F227F801244137D2551A8E6CED939
{
public:
public:
};
// System.Object
struct Il2CppArrayBounds;
// System.Array
// System.Collections.Generic.List`1<UnityEngine.XR.MeshInfo>
struct List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661, ____items_1)); }
inline MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2* get__items_1() const { return ____items_1; }
inline MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661_StaticFields, ____emptyArray_5)); }
inline MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2* get__emptyArray_5() const { return ____emptyArray_5; }
inline MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(MeshInfoU5BU5D_t90D799C585E2C29742712777353979968F7BA6F2* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState>
struct List_1_tDECBF737A96DF978685F6386C44B9284190E43C7 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tDECBF737A96DF978685F6386C44B9284190E43C7, ____items_1)); }
inline XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06* get__items_1() const { return ____items_1; }
inline XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tDECBF737A96DF978685F6386C44B9284190E43C7, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tDECBF737A96DF978685F6386C44B9284190E43C7, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tDECBF737A96DF978685F6386C44B9284190E43C7, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tDECBF737A96DF978685F6386C44B9284190E43C7_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tDECBF737A96DF978685F6386C44B9284190E43C7_StaticFields, ____emptyArray_5)); }
inline XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06* get__emptyArray_5() const { return ____emptyArray_5; }
inline XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(XRNodeStateU5BU5D_t863380D0759FCB9473CE1A9CBCA16224A84D3D06* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// UnityEngine.XR.HashCodeHelper
struct HashCodeHelper_tAF19B8B59E2697FF1E40B7A101197D83EDFA0790 : public RuntimeObject
{
public:
public:
};
// UnityEngine.XR.InputDevices
struct InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF : public RuntimeObject
{
public:
public:
};
struct InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_StaticFields
{
public:
// System.Action`1<UnityEngine.XR.InputDevice> UnityEngine.XR.InputDevices::deviceConnected
Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * ___deviceConnected_0;
// System.Action`1<UnityEngine.XR.InputDevice> UnityEngine.XR.InputDevices::deviceDisconnected
Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * ___deviceDisconnected_1;
// System.Action`1<UnityEngine.XR.InputDevice> UnityEngine.XR.InputDevices::deviceConfigChanged
Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * ___deviceConfigChanged_2;
public:
inline static int32_t get_offset_of_deviceConnected_0() { return static_cast<int32_t>(offsetof(InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_StaticFields, ___deviceConnected_0)); }
inline Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * get_deviceConnected_0() const { return ___deviceConnected_0; }
inline Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 ** get_address_of_deviceConnected_0() { return &___deviceConnected_0; }
inline void set_deviceConnected_0(Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * value)
{
___deviceConnected_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___deviceConnected_0), (void*)value);
}
inline static int32_t get_offset_of_deviceDisconnected_1() { return static_cast<int32_t>(offsetof(InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_StaticFields, ___deviceDisconnected_1)); }
inline Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * get_deviceDisconnected_1() const { return ___deviceDisconnected_1; }
inline Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 ** get_address_of_deviceDisconnected_1() { return &___deviceDisconnected_1; }
inline void set_deviceDisconnected_1(Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * value)
{
___deviceDisconnected_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___deviceDisconnected_1), (void*)value);
}
inline static int32_t get_offset_of_deviceConfigChanged_2() { return static_cast<int32_t>(offsetof(InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_StaticFields, ___deviceConfigChanged_2)); }
inline Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * get_deviceConfigChanged_2() const { return ___deviceConfigChanged_2; }
inline Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 ** get_address_of_deviceConfigChanged_2() { return &___deviceConfigChanged_2; }
inline void set_deviceConfigChanged_2(Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * value)
{
___deviceConfigChanged_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___deviceConfigChanged_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputDevices
struct InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.XR.InputDevices
struct InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshaled_com
{
};
// UnityEngine.XR.InputTracking
struct InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8 : public RuntimeObject
{
public:
public:
};
struct InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields
{
public:
// System.Action`1<UnityEngine.XR.XRNodeState> UnityEngine.XR.InputTracking::trackingAcquired
Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * ___trackingAcquired_0;
// System.Action`1<UnityEngine.XR.XRNodeState> UnityEngine.XR.InputTracking::trackingLost
Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * ___trackingLost_1;
// System.Action`1<UnityEngine.XR.XRNodeState> UnityEngine.XR.InputTracking::nodeAdded
Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * ___nodeAdded_2;
// System.Action`1<UnityEngine.XR.XRNodeState> UnityEngine.XR.InputTracking::nodeRemoved
Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * ___nodeRemoved_3;
public:
inline static int32_t get_offset_of_trackingAcquired_0() { return static_cast<int32_t>(offsetof(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields, ___trackingAcquired_0)); }
inline Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * get_trackingAcquired_0() const { return ___trackingAcquired_0; }
inline Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 ** get_address_of_trackingAcquired_0() { return &___trackingAcquired_0; }
inline void set_trackingAcquired_0(Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * value)
{
___trackingAcquired_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___trackingAcquired_0), (void*)value);
}
inline static int32_t get_offset_of_trackingLost_1() { return static_cast<int32_t>(offsetof(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields, ___trackingLost_1)); }
inline Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * get_trackingLost_1() const { return ___trackingLost_1; }
inline Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 ** get_address_of_trackingLost_1() { return &___trackingLost_1; }
inline void set_trackingLost_1(Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * value)
{
___trackingLost_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___trackingLost_1), (void*)value);
}
inline static int32_t get_offset_of_nodeAdded_2() { return static_cast<int32_t>(offsetof(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields, ___nodeAdded_2)); }
inline Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * get_nodeAdded_2() const { return ___nodeAdded_2; }
inline Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 ** get_address_of_nodeAdded_2() { return &___nodeAdded_2; }
inline void set_nodeAdded_2(Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * value)
{
___nodeAdded_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nodeAdded_2), (void*)value);
}
inline static int32_t get_offset_of_nodeRemoved_3() { return static_cast<int32_t>(offsetof(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields, ___nodeRemoved_3)); }
inline Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * get_nodeRemoved_3() const { return ___nodeRemoved_3; }
inline Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 ** get_address_of_nodeRemoved_3() { return &___nodeRemoved_3; }
inline void set_nodeRemoved_3(Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * value)
{
___nodeRemoved_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nodeRemoved_3), (void*)value);
}
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.Int64
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.Single
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.UInt32
struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
// System.UInt64
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// UnityEngine.Quaternion
struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357
{
public:
// System.Single UnityEngine.Quaternion::x
float ___x_0;
// System.Single UnityEngine.Quaternion::y
float ___y_1;
// System.Single UnityEngine.Quaternion::z
float ___z_2;
// System.Single UnityEngine.Quaternion::w
float ___w_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___z_2)); }
inline float get_z_2() const { return ___z_2; }
inline float* get_address_of_z_2() { return &___z_2; }
inline void set_z_2(float value)
{
___z_2 = value;
}
inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___w_3)); }
inline float get_w_3() const { return ___w_3; }
inline float* get_address_of_w_3() { return &___w_3; }
inline void set_w_3(float value)
{
___w_3 = value;
}
};
struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields
{
public:
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___identityQuaternion_4;
public:
inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields, ___identityQuaternion_4)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_identityQuaternion_4() const { return ___identityQuaternion_4; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; }
inline void set_identityQuaternion_4(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___identityQuaternion_4 = value;
}
};
// UnityEngine.Vector3
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
public:
inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___x_2)); }
inline float get_x_2() const { return ___x_2; }
inline float* get_address_of_x_2() { return &___x_2; }
inline void set_x_2(float value)
{
___x_2 = value;
}
inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___y_3)); }
inline float get_y_3() const { return ___y_3; }
inline float* get_address_of_y_3() { return &___y_3; }
inline void set_y_3(float value)
{
___y_3 = value;
}
inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___z_4)); }
inline float get_z_4() const { return ___z_4; }
inline float* get_address_of_z_4() { return &___z_4; }
inline void set_z_4(float value)
{
___z_4 = value;
}
};
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___zeroVector_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___oneVector_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___upVector_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_upVector_7() const { return ___upVector_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___downVector_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_downVector_8() const { return ___downVector_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___leftVector_9)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___rightVector_10)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___forwardVector_11)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___backVector_12)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_backVector_12() const { return ___backVector_12; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___negativeInfinityVector_14 = value;
}
};
// UnityEngine.XR.Bone
struct Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0
{
public:
// System.UInt64 UnityEngine.XR.Bone::m_DeviceId
uint64_t ___m_DeviceId_0;
// System.UInt32 UnityEngine.XR.Bone::m_FeatureIndex
uint32_t ___m_FeatureIndex_1;
public:
inline static int32_t get_offset_of_m_DeviceId_0() { return static_cast<int32_t>(offsetof(Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0, ___m_DeviceId_0)); }
inline uint64_t get_m_DeviceId_0() const { return ___m_DeviceId_0; }
inline uint64_t* get_address_of_m_DeviceId_0() { return &___m_DeviceId_0; }
inline void set_m_DeviceId_0(uint64_t value)
{
___m_DeviceId_0 = value;
}
inline static int32_t get_offset_of_m_FeatureIndex_1() { return static_cast<int32_t>(offsetof(Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0, ___m_FeatureIndex_1)); }
inline uint32_t get_m_FeatureIndex_1() const { return ___m_FeatureIndex_1; }
inline uint32_t* get_address_of_m_FeatureIndex_1() { return &___m_FeatureIndex_1; }
inline void set_m_FeatureIndex_1(uint32_t value)
{
___m_FeatureIndex_1 = value;
}
};
// UnityEngine.XR.Eyes
struct Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5
{
public:
// System.UInt64 UnityEngine.XR.Eyes::m_DeviceId
uint64_t ___m_DeviceId_0;
// System.UInt32 UnityEngine.XR.Eyes::m_FeatureIndex
uint32_t ___m_FeatureIndex_1;
public:
inline static int32_t get_offset_of_m_DeviceId_0() { return static_cast<int32_t>(offsetof(Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5, ___m_DeviceId_0)); }
inline uint64_t get_m_DeviceId_0() const { return ___m_DeviceId_0; }
inline uint64_t* get_address_of_m_DeviceId_0() { return &___m_DeviceId_0; }
inline void set_m_DeviceId_0(uint64_t value)
{
___m_DeviceId_0 = value;
}
inline static int32_t get_offset_of_m_FeatureIndex_1() { return static_cast<int32_t>(offsetof(Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5, ___m_FeatureIndex_1)); }
inline uint32_t get_m_FeatureIndex_1() const { return ___m_FeatureIndex_1; }
inline uint32_t* get_address_of_m_FeatureIndex_1() { return &___m_FeatureIndex_1; }
inline void set_m_FeatureIndex_1(uint32_t value)
{
___m_FeatureIndex_1 = value;
}
};
// UnityEngine.XR.Hand
struct Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3
{
public:
// System.UInt64 UnityEngine.XR.Hand::m_DeviceId
uint64_t ___m_DeviceId_0;
// System.UInt32 UnityEngine.XR.Hand::m_FeatureIndex
uint32_t ___m_FeatureIndex_1;
public:
inline static int32_t get_offset_of_m_DeviceId_0() { return static_cast<int32_t>(offsetof(Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3, ___m_DeviceId_0)); }
inline uint64_t get_m_DeviceId_0() const { return ___m_DeviceId_0; }
inline uint64_t* get_address_of_m_DeviceId_0() { return &___m_DeviceId_0; }
inline void set_m_DeviceId_0(uint64_t value)
{
___m_DeviceId_0 = value;
}
inline static int32_t get_offset_of_m_FeatureIndex_1() { return static_cast<int32_t>(offsetof(Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3, ___m_FeatureIndex_1)); }
inline uint32_t get_m_FeatureIndex_1() const { return ___m_FeatureIndex_1; }
inline uint32_t* get_address_of_m_FeatureIndex_1() { return &___m_FeatureIndex_1; }
inline void set_m_FeatureIndex_1(uint32_t value)
{
___m_FeatureIndex_1 = value;
}
};
// UnityEngine.XR.InputDevice
struct InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC
{
public:
// System.UInt64 UnityEngine.XR.InputDevice::m_DeviceId
uint64_t ___m_DeviceId_0;
// System.Boolean UnityEngine.XR.InputDevice::m_Initialized
bool ___m_Initialized_1;
public:
inline static int32_t get_offset_of_m_DeviceId_0() { return static_cast<int32_t>(offsetof(InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC, ___m_DeviceId_0)); }
inline uint64_t get_m_DeviceId_0() const { return ___m_DeviceId_0; }
inline uint64_t* get_address_of_m_DeviceId_0() { return &___m_DeviceId_0; }
inline void set_m_DeviceId_0(uint64_t value)
{
___m_DeviceId_0 = value;
}
inline static int32_t get_offset_of_m_Initialized_1() { return static_cast<int32_t>(offsetof(InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC, ___m_Initialized_1)); }
inline bool get_m_Initialized_1() const { return ___m_Initialized_1; }
inline bool* get_address_of_m_Initialized_1() { return &___m_Initialized_1; }
inline void set_m_Initialized_1(bool value)
{
___m_Initialized_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputDevice
struct InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshaled_pinvoke
{
uint64_t ___m_DeviceId_0;
int32_t ___m_Initialized_1;
};
// Native definition for COM marshalling of UnityEngine.XR.InputDevice
struct InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshaled_com
{
uint64_t ___m_DeviceId_0;
int32_t ___m_Initialized_1;
};
// UnityEngine.XR.MeshId
struct MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A
{
public:
// System.UInt64 UnityEngine.XR.MeshId::m_SubId1
uint64_t ___m_SubId1_1;
// System.UInt64 UnityEngine.XR.MeshId::m_SubId2
uint64_t ___m_SubId2_2;
public:
inline static int32_t get_offset_of_m_SubId1_1() { return static_cast<int32_t>(offsetof(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A, ___m_SubId1_1)); }
inline uint64_t get_m_SubId1_1() const { return ___m_SubId1_1; }
inline uint64_t* get_address_of_m_SubId1_1() { return &___m_SubId1_1; }
inline void set_m_SubId1_1(uint64_t value)
{
___m_SubId1_1 = value;
}
inline static int32_t get_offset_of_m_SubId2_2() { return static_cast<int32_t>(offsetof(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A, ___m_SubId2_2)); }
inline uint64_t get_m_SubId2_2() const { return ___m_SubId2_2; }
inline uint64_t* get_address_of_m_SubId2_2() { return &___m_SubId2_2; }
inline void set_m_SubId2_2(uint64_t value)
{
___m_SubId2_2 = value;
}
};
struct MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_StaticFields
{
public:
// UnityEngine.XR.MeshId UnityEngine.XR.MeshId::s_InvalidId
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___s_InvalidId_0;
public:
inline static int32_t get_offset_of_s_InvalidId_0() { return static_cast<int32_t>(offsetof(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_StaticFields, ___s_InvalidId_0)); }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A get_s_InvalidId_0() const { return ___s_InvalidId_0; }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * get_address_of_s_InvalidId_0() { return &___s_InvalidId_0; }
inline void set_s_InvalidId_0(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A value)
{
___s_InvalidId_0 = value;
}
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// UnityEngine.CubemapFace
struct CubemapFace_t74DD9C86D8A5E5F782F136F8753580668F96FFB9
{
public:
// System.Int32 UnityEngine.CubemapFace::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CubemapFace_t74DD9C86D8A5E5F782F136F8753580668F96FFB9, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Experimental.Rendering.GraphicsFormat
struct GraphicsFormat_t512915BBE299AE115F4DB0B96DF1DA2E72ECA181
{
public:
// System.Int32 UnityEngine.Experimental.Rendering.GraphicsFormat::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GraphicsFormat_t512915BBE299AE115F4DB0B96DF1DA2E72ECA181, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.IntegratedSubsystem
struct IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.IntegratedSubsystem::m_Ptr
intptr_t ___m_Ptr_0;
// UnityEngine.ISubsystemDescriptor UnityEngine.IntegratedSubsystem::m_subsystemDescriptor
RuntimeObject* ___m_subsystemDescriptor_1;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
inline static int32_t get_offset_of_m_subsystemDescriptor_1() { return static_cast<int32_t>(offsetof(IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026, ___m_subsystemDescriptor_1)); }
inline RuntimeObject* get_m_subsystemDescriptor_1() const { return ___m_subsystemDescriptor_1; }
inline RuntimeObject** get_address_of_m_subsystemDescriptor_1() { return &___m_subsystemDescriptor_1; }
inline void set_m_subsystemDescriptor_1(RuntimeObject* value)
{
___m_subsystemDescriptor_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_subsystemDescriptor_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystem
struct IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
RuntimeObject* ___m_subsystemDescriptor_1;
};
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystem
struct IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026_marshaled_com
{
intptr_t ___m_Ptr_0;
RuntimeObject* ___m_subsystemDescriptor_1;
};
// UnityEngine.IntegratedSubsystemDescriptor
struct IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.IntegratedSubsystemDescriptor::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor
struct IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor
struct IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.RenderTextureCreationFlags
struct RenderTextureCreationFlags_tF63E06301E4BB4746F7E07759B359872BD4BFB1E
{
public:
// System.Int32 UnityEngine.RenderTextureCreationFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderTextureCreationFlags_tF63E06301E4BB4746F7E07759B359872BD4BFB1E, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.RenderTextureMemoryless
struct RenderTextureMemoryless_t19E37ADD57C1F00D67146A2BB4521D06F370D2E9
{
public:
// System.Int32 UnityEngine.RenderTextureMemoryless::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderTextureMemoryless_t19E37ADD57C1F00D67146A2BB4521D06F370D2E9, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.BuiltinRenderTextureType
struct BuiltinRenderTextureType_t6ECEE9FF62E815D7ED640D057EEA84C0FD145D01
{
public:
// System.Int32 UnityEngine.Rendering.BuiltinRenderTextureType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BuiltinRenderTextureType_t6ECEE9FF62E815D7ED640D057EEA84C0FD145D01, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.ShadowSamplingMode
struct ShadowSamplingMode_t585A9BDECAC505FF19FF785F55CDD403A2E5DA73
{
public:
// System.Int32 UnityEngine.Rendering.ShadowSamplingMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ShadowSamplingMode_t585A9BDECAC505FF19FF785F55CDD403A2E5DA73, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Rendering.TextureDimension
struct TextureDimension_t90D0E4110D3F4D062F3E8C0F69809BFBBDF8E19C
{
public:
// System.Int32 UnityEngine.Rendering.TextureDimension::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureDimension_t90D0E4110D3F4D062F3E8C0F69809BFBBDF8E19C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.VRTextureUsage
struct VRTextureUsage_t2D7C2397ABF03DD28086B969100F7D91DDD978A0
{
public:
// System.Int32 UnityEngine.VRTextureUsage::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VRTextureUsage_t2D7C2397ABF03DD28086B969100F7D91DDD978A0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.AvailableTrackingData
struct AvailableTrackingData_tF1140FC398AFB5CA7E9FBBBC8ECB242E91E86AAD
{
public:
// System.Int32 UnityEngine.XR.AvailableTrackingData::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AvailableTrackingData_tF1140FC398AFB5CA7E9FBBBC8ECB242E91E86AAD, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.ConnectionChangeType
struct ConnectionChangeType_t592220C0F18316BB6E7E54D1D709524ABC8077D0
{
public:
// System.UInt32 UnityEngine.XR.ConnectionChangeType::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConnectionChangeType_t592220C0F18316BB6E7E54D1D709524ABC8077D0, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.InputFeatureType
struct InputFeatureType_t683990CF03F80321E203CDC5EDCA5846BB56BAF4
{
public:
// System.UInt32 UnityEngine.XR.InputFeatureType::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputFeatureType_t683990CF03F80321E203CDC5EDCA5846BB56BAF4, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.InputTracking_TrackingStateEventType
struct TrackingStateEventType_tD5ADDFEA62593966E5D258C959431DB50354B9C9
{
public:
// System.Int32 UnityEngine.XR.InputTracking_TrackingStateEventType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingStateEventType_tD5ADDFEA62593966E5D258C959431DB50354B9C9, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.MeshChangeState
struct MeshChangeState_t42D58EE953790EC6E1609C4BEB5FC75C680D84E0
{
public:
// System.Int32 UnityEngine.XR.MeshChangeState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MeshChangeState_t42D58EE953790EC6E1609C4BEB5FC75C680D84E0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.MeshGenerationStatus
struct MeshGenerationStatus_t9EF07FCDC3FA6CC1951DDDED08F361AC02486D73
{
public:
// System.Int32 UnityEngine.XR.MeshGenerationStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MeshGenerationStatus_t9EF07FCDC3FA6CC1951DDDED08F361AC02486D73, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.MeshVertexAttributes
struct MeshVertexAttributes_t108D1D0898F30028DA0D36251BCB889FF471FF58
{
public:
// System.Int32 UnityEngine.XR.MeshVertexAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MeshVertexAttributes_t108D1D0898F30028DA0D36251BCB889FF471FF58, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.XR.XRDisplaySubsystem_XRMirrorViewBlitDesc
struct XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F
{
public:
// System.IntPtr UnityEngine.XR.XRDisplaySubsystem_XRMirrorViewBlitDesc::displaySubsystemInstance
intptr_t ___displaySubsystemInstance_0;
// System.Boolean UnityEngine.XR.XRDisplaySubsystem_XRMirrorViewBlitDesc::nativeBlitAvailable
bool ___nativeBlitAvailable_1;
// System.Boolean UnityEngine.XR.XRDisplaySubsystem_XRMirrorViewBlitDesc::nativeBlitInvalidStates
bool ___nativeBlitInvalidStates_2;
// System.Int32 UnityEngine.XR.XRDisplaySubsystem_XRMirrorViewBlitDesc::blitParamsCount
int32_t ___blitParamsCount_3;
public:
inline static int32_t get_offset_of_displaySubsystemInstance_0() { return static_cast<int32_t>(offsetof(XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F, ___displaySubsystemInstance_0)); }
inline intptr_t get_displaySubsystemInstance_0() const { return ___displaySubsystemInstance_0; }
inline intptr_t* get_address_of_displaySubsystemInstance_0() { return &___displaySubsystemInstance_0; }
inline void set_displaySubsystemInstance_0(intptr_t value)
{
___displaySubsystemInstance_0 = value;
}
inline static int32_t get_offset_of_nativeBlitAvailable_1() { return static_cast<int32_t>(offsetof(XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F, ___nativeBlitAvailable_1)); }
inline bool get_nativeBlitAvailable_1() const { return ___nativeBlitAvailable_1; }
inline bool* get_address_of_nativeBlitAvailable_1() { return &___nativeBlitAvailable_1; }
inline void set_nativeBlitAvailable_1(bool value)
{
___nativeBlitAvailable_1 = value;
}
inline static int32_t get_offset_of_nativeBlitInvalidStates_2() { return static_cast<int32_t>(offsetof(XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F, ___nativeBlitInvalidStates_2)); }
inline bool get_nativeBlitInvalidStates_2() const { return ___nativeBlitInvalidStates_2; }
inline bool* get_address_of_nativeBlitInvalidStates_2() { return &___nativeBlitInvalidStates_2; }
inline void set_nativeBlitInvalidStates_2(bool value)
{
___nativeBlitInvalidStates_2 = value;
}
inline static int32_t get_offset_of_blitParamsCount_3() { return static_cast<int32_t>(offsetof(XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F, ___blitParamsCount_3)); }
inline int32_t get_blitParamsCount_3() const { return ___blitParamsCount_3; }
inline int32_t* get_address_of_blitParamsCount_3() { return &___blitParamsCount_3; }
inline void set_blitParamsCount_3(int32_t value)
{
___blitParamsCount_3 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.XRDisplaySubsystem/XRMirrorViewBlitDesc
struct XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshaled_pinvoke
{
intptr_t ___displaySubsystemInstance_0;
int32_t ___nativeBlitAvailable_1;
int32_t ___nativeBlitInvalidStates_2;
int32_t ___blitParamsCount_3;
};
// Native definition for COM marshalling of UnityEngine.XR.XRDisplaySubsystem/XRMirrorViewBlitDesc
struct XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshaled_com
{
intptr_t ___displaySubsystemInstance_0;
int32_t ___nativeBlitAvailable_1;
int32_t ___nativeBlitInvalidStates_2;
int32_t ___blitParamsCount_3;
};
// UnityEngine.XR.XRNode
struct XRNode_tC8909A28AC7B1B4D71839715DDC1011895BA5F5F
{
public:
// System.Int32 UnityEngine.XR.XRNode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XRNode_tC8909A28AC7B1B4D71839715DDC1011895BA5F5F, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// UnityEngine.Component
struct Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.XR.XRDisplaySubsystem>
struct IntegratedSubsystemDescriptor_1_t92C33FD6897AFD92459369C236D3447735C3D6E5 : public IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_pinvoke_define
#define IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_pinvoke_define
struct IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_pinvoke : public IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA_marshaled_pinvoke
{
};
#endif
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_com_define
#define IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_com_define
struct IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_com : public IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA_marshaled_com
{
};
#endif
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.XR.XRInputSubsystem>
struct IntegratedSubsystemDescriptor_1_t13988C31A891A4EAAA0A3C89EC5A51F23584F18B : public IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_pinvoke_define
#define IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_pinvoke_define
struct IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_pinvoke : public IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA_marshaled_pinvoke
{
};
#endif
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_com_define
#define IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_com_define
struct IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_com : public IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA_marshaled_com
{
};
#endif
// UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.XR.XRMeshSubsystem>
struct IntegratedSubsystemDescriptor_1_t9CE6049A97B62041547D75D3A8D31B5F02DE7751 : public IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_pinvoke_define
#define IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_pinvoke_define
struct IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_pinvoke : public IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA_marshaled_pinvoke
{
};
#endif
// Native definition for COM marshalling of UnityEngine.IntegratedSubsystemDescriptor`1
#ifndef IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_com_define
#define IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_com_define
struct IntegratedSubsystemDescriptor_1_t6B91293AA752E7448406604457D5332168E7D867_marshaled_com : public IntegratedSubsystemDescriptor_t56BB69721C25889FFD6A9FE635ED05BB94D683DA_marshaled_com
{
};
#endif
// UnityEngine.IntegratedSubsystem`1<UnityEngine.XR.XRDisplaySubsystemDescriptor>
struct IntegratedSubsystem_1_tA1D5F6FF883C281DC92140F8547E38FBA9A4F7E1 : public IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026
{
public:
public:
};
// UnityEngine.IntegratedSubsystem`1<UnityEngine.XR.XRInputSubsystemDescriptor>
struct IntegratedSubsystem_1_t648AE5E2D40F3159DD68D2AFD4B5ECA29920149D : public IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026
{
public:
public:
};
// UnityEngine.IntegratedSubsystem`1<UnityEngine.XR.XRMeshSubsystemDescriptor>
struct IntegratedSubsystem_1_t808F7E2ADCA546A132C411EB61297ADCB67BDFC5 : public IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026
{
public:
public:
};
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.RenderTextureDescriptor
struct RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E
{
public:
// System.Int32 UnityEngine.RenderTextureDescriptor::<width>k__BackingField
int32_t ___U3CwidthU3Ek__BackingField_0;
// System.Int32 UnityEngine.RenderTextureDescriptor::<height>k__BackingField
int32_t ___U3CheightU3Ek__BackingField_1;
// System.Int32 UnityEngine.RenderTextureDescriptor::<msaaSamples>k__BackingField
int32_t ___U3CmsaaSamplesU3Ek__BackingField_2;
// System.Int32 UnityEngine.RenderTextureDescriptor::<volumeDepth>k__BackingField
int32_t ___U3CvolumeDepthU3Ek__BackingField_3;
// System.Int32 UnityEngine.RenderTextureDescriptor::<mipCount>k__BackingField
int32_t ___U3CmipCountU3Ek__BackingField_4;
// UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.RenderTextureDescriptor::_graphicsFormat
int32_t ____graphicsFormat_5;
// UnityEngine.Experimental.Rendering.GraphicsFormat UnityEngine.RenderTextureDescriptor::<stencilFormat>k__BackingField
int32_t ___U3CstencilFormatU3Ek__BackingField_6;
// System.Int32 UnityEngine.RenderTextureDescriptor::_depthBufferBits
int32_t ____depthBufferBits_7;
// UnityEngine.Rendering.TextureDimension UnityEngine.RenderTextureDescriptor::<dimension>k__BackingField
int32_t ___U3CdimensionU3Ek__BackingField_9;
// UnityEngine.Rendering.ShadowSamplingMode UnityEngine.RenderTextureDescriptor::<shadowSamplingMode>k__BackingField
int32_t ___U3CshadowSamplingModeU3Ek__BackingField_10;
// UnityEngine.VRTextureUsage UnityEngine.RenderTextureDescriptor::<vrUsage>k__BackingField
int32_t ___U3CvrUsageU3Ek__BackingField_11;
// UnityEngine.RenderTextureCreationFlags UnityEngine.RenderTextureDescriptor::_flags
int32_t ____flags_12;
// UnityEngine.RenderTextureMemoryless UnityEngine.RenderTextureDescriptor::<memoryless>k__BackingField
int32_t ___U3CmemorylessU3Ek__BackingField_13;
public:
inline static int32_t get_offset_of_U3CwidthU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CwidthU3Ek__BackingField_0)); }
inline int32_t get_U3CwidthU3Ek__BackingField_0() const { return ___U3CwidthU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3CwidthU3Ek__BackingField_0() { return &___U3CwidthU3Ek__BackingField_0; }
inline void set_U3CwidthU3Ek__BackingField_0(int32_t value)
{
___U3CwidthU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CheightU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CheightU3Ek__BackingField_1)); }
inline int32_t get_U3CheightU3Ek__BackingField_1() const { return ___U3CheightU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CheightU3Ek__BackingField_1() { return &___U3CheightU3Ek__BackingField_1; }
inline void set_U3CheightU3Ek__BackingField_1(int32_t value)
{
___U3CheightU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CmsaaSamplesU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CmsaaSamplesU3Ek__BackingField_2)); }
inline int32_t get_U3CmsaaSamplesU3Ek__BackingField_2() const { return ___U3CmsaaSamplesU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CmsaaSamplesU3Ek__BackingField_2() { return &___U3CmsaaSamplesU3Ek__BackingField_2; }
inline void set_U3CmsaaSamplesU3Ek__BackingField_2(int32_t value)
{
___U3CmsaaSamplesU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CvolumeDepthU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CvolumeDepthU3Ek__BackingField_3)); }
inline int32_t get_U3CvolumeDepthU3Ek__BackingField_3() const { return ___U3CvolumeDepthU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3CvolumeDepthU3Ek__BackingField_3() { return &___U3CvolumeDepthU3Ek__BackingField_3; }
inline void set_U3CvolumeDepthU3Ek__BackingField_3(int32_t value)
{
___U3CvolumeDepthU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CmipCountU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CmipCountU3Ek__BackingField_4)); }
inline int32_t get_U3CmipCountU3Ek__BackingField_4() const { return ___U3CmipCountU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CmipCountU3Ek__BackingField_4() { return &___U3CmipCountU3Ek__BackingField_4; }
inline void set_U3CmipCountU3Ek__BackingField_4(int32_t value)
{
___U3CmipCountU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of__graphicsFormat_5() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ____graphicsFormat_5)); }
inline int32_t get__graphicsFormat_5() const { return ____graphicsFormat_5; }
inline int32_t* get_address_of__graphicsFormat_5() { return &____graphicsFormat_5; }
inline void set__graphicsFormat_5(int32_t value)
{
____graphicsFormat_5 = value;
}
inline static int32_t get_offset_of_U3CstencilFormatU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CstencilFormatU3Ek__BackingField_6)); }
inline int32_t get_U3CstencilFormatU3Ek__BackingField_6() const { return ___U3CstencilFormatU3Ek__BackingField_6; }
inline int32_t* get_address_of_U3CstencilFormatU3Ek__BackingField_6() { return &___U3CstencilFormatU3Ek__BackingField_6; }
inline void set_U3CstencilFormatU3Ek__BackingField_6(int32_t value)
{
___U3CstencilFormatU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of__depthBufferBits_7() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ____depthBufferBits_7)); }
inline int32_t get__depthBufferBits_7() const { return ____depthBufferBits_7; }
inline int32_t* get_address_of__depthBufferBits_7() { return &____depthBufferBits_7; }
inline void set__depthBufferBits_7(int32_t value)
{
____depthBufferBits_7 = value;
}
inline static int32_t get_offset_of_U3CdimensionU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CdimensionU3Ek__BackingField_9)); }
inline int32_t get_U3CdimensionU3Ek__BackingField_9() const { return ___U3CdimensionU3Ek__BackingField_9; }
inline int32_t* get_address_of_U3CdimensionU3Ek__BackingField_9() { return &___U3CdimensionU3Ek__BackingField_9; }
inline void set_U3CdimensionU3Ek__BackingField_9(int32_t value)
{
___U3CdimensionU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3CshadowSamplingModeU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CshadowSamplingModeU3Ek__BackingField_10)); }
inline int32_t get_U3CshadowSamplingModeU3Ek__BackingField_10() const { return ___U3CshadowSamplingModeU3Ek__BackingField_10; }
inline int32_t* get_address_of_U3CshadowSamplingModeU3Ek__BackingField_10() { return &___U3CshadowSamplingModeU3Ek__BackingField_10; }
inline void set_U3CshadowSamplingModeU3Ek__BackingField_10(int32_t value)
{
___U3CshadowSamplingModeU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of_U3CvrUsageU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CvrUsageU3Ek__BackingField_11)); }
inline int32_t get_U3CvrUsageU3Ek__BackingField_11() const { return ___U3CvrUsageU3Ek__BackingField_11; }
inline int32_t* get_address_of_U3CvrUsageU3Ek__BackingField_11() { return &___U3CvrUsageU3Ek__BackingField_11; }
inline void set_U3CvrUsageU3Ek__BackingField_11(int32_t value)
{
___U3CvrUsageU3Ek__BackingField_11 = value;
}
inline static int32_t get_offset_of__flags_12() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ____flags_12)); }
inline int32_t get__flags_12() const { return ____flags_12; }
inline int32_t* get_address_of__flags_12() { return &____flags_12; }
inline void set__flags_12(int32_t value)
{
____flags_12 = value;
}
inline static int32_t get_offset_of_U3CmemorylessU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E, ___U3CmemorylessU3Ek__BackingField_13)); }
inline int32_t get_U3CmemorylessU3Ek__BackingField_13() const { return ___U3CmemorylessU3Ek__BackingField_13; }
inline int32_t* get_address_of_U3CmemorylessU3Ek__BackingField_13() { return &___U3CmemorylessU3Ek__BackingField_13; }
inline void set_U3CmemorylessU3Ek__BackingField_13(int32_t value)
{
___U3CmemorylessU3Ek__BackingField_13 = value;
}
};
struct RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E_StaticFields
{
public:
// System.Int32[] UnityEngine.RenderTextureDescriptor::depthFormatBits
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___depthFormatBits_8;
public:
inline static int32_t get_offset_of_depthFormatBits_8() { return static_cast<int32_t>(offsetof(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E_StaticFields, ___depthFormatBits_8)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_depthFormatBits_8() const { return ___depthFormatBits_8; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_depthFormatBits_8() { return &___depthFormatBits_8; }
inline void set_depthFormatBits_8(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___depthFormatBits_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___depthFormatBits_8), (void*)value);
}
};
// UnityEngine.Rendering.RenderTargetIdentifier
struct RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B
{
public:
// UnityEngine.Rendering.BuiltinRenderTextureType UnityEngine.Rendering.RenderTargetIdentifier::m_Type
int32_t ___m_Type_0;
// System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::m_NameID
int32_t ___m_NameID_1;
// System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::m_InstanceID
int32_t ___m_InstanceID_2;
// System.IntPtr UnityEngine.Rendering.RenderTargetIdentifier::m_BufferPointer
intptr_t ___m_BufferPointer_3;
// System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::m_MipLevel
int32_t ___m_MipLevel_4;
// UnityEngine.CubemapFace UnityEngine.Rendering.RenderTargetIdentifier::m_CubeFace
int32_t ___m_CubeFace_5;
// System.Int32 UnityEngine.Rendering.RenderTargetIdentifier::m_DepthSlice
int32_t ___m_DepthSlice_6;
public:
inline static int32_t get_offset_of_m_Type_0() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_Type_0)); }
inline int32_t get_m_Type_0() const { return ___m_Type_0; }
inline int32_t* get_address_of_m_Type_0() { return &___m_Type_0; }
inline void set_m_Type_0(int32_t value)
{
___m_Type_0 = value;
}
inline static int32_t get_offset_of_m_NameID_1() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_NameID_1)); }
inline int32_t get_m_NameID_1() const { return ___m_NameID_1; }
inline int32_t* get_address_of_m_NameID_1() { return &___m_NameID_1; }
inline void set_m_NameID_1(int32_t value)
{
___m_NameID_1 = value;
}
inline static int32_t get_offset_of_m_InstanceID_2() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_InstanceID_2)); }
inline int32_t get_m_InstanceID_2() const { return ___m_InstanceID_2; }
inline int32_t* get_address_of_m_InstanceID_2() { return &___m_InstanceID_2; }
inline void set_m_InstanceID_2(int32_t value)
{
___m_InstanceID_2 = value;
}
inline static int32_t get_offset_of_m_BufferPointer_3() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_BufferPointer_3)); }
inline intptr_t get_m_BufferPointer_3() const { return ___m_BufferPointer_3; }
inline intptr_t* get_address_of_m_BufferPointer_3() { return &___m_BufferPointer_3; }
inline void set_m_BufferPointer_3(intptr_t value)
{
___m_BufferPointer_3 = value;
}
inline static int32_t get_offset_of_m_MipLevel_4() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_MipLevel_4)); }
inline int32_t get_m_MipLevel_4() const { return ___m_MipLevel_4; }
inline int32_t* get_address_of_m_MipLevel_4() { return &___m_MipLevel_4; }
inline void set_m_MipLevel_4(int32_t value)
{
___m_MipLevel_4 = value;
}
inline static int32_t get_offset_of_m_CubeFace_5() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_CubeFace_5)); }
inline int32_t get_m_CubeFace_5() const { return ___m_CubeFace_5; }
inline int32_t* get_address_of_m_CubeFace_5() { return &___m_CubeFace_5; }
inline void set_m_CubeFace_5(int32_t value)
{
___m_CubeFace_5 = value;
}
inline static int32_t get_offset_of_m_DepthSlice_6() { return static_cast<int32_t>(offsetof(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B, ___m_DepthSlice_6)); }
inline int32_t get_m_DepthSlice_6() const { return ___m_DepthSlice_6; }
inline int32_t* get_address_of_m_DepthSlice_6() { return &___m_DepthSlice_6; }
inline void set_m_DepthSlice_6(int32_t value)
{
___m_DepthSlice_6 = value;
}
};
// UnityEngine.XR.InputFeatureUsage
struct InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C
{
public:
// System.String UnityEngine.XR.InputFeatureUsage::m_Name
String_t* ___m_Name_0;
// UnityEngine.XR.InputFeatureType UnityEngine.XR.InputFeatureUsage::m_InternalType
uint32_t ___m_InternalType_1;
public:
inline static int32_t get_offset_of_m_Name_0() { return static_cast<int32_t>(offsetof(InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C, ___m_Name_0)); }
inline String_t* get_m_Name_0() const { return ___m_Name_0; }
inline String_t** get_address_of_m_Name_0() { return &___m_Name_0; }
inline void set_m_Name_0(String_t* value)
{
___m_Name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_0), (void*)value);
}
inline static int32_t get_offset_of_m_InternalType_1() { return static_cast<int32_t>(offsetof(InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C, ___m_InternalType_1)); }
inline uint32_t get_m_InternalType_1() const { return ___m_InternalType_1; }
inline uint32_t* get_address_of_m_InternalType_1() { return &___m_InternalType_1; }
inline void set_m_InternalType_1(uint32_t value)
{
___m_InternalType_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputFeatureUsage
struct InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_pinvoke
{
char* ___m_Name_0;
uint32_t ___m_InternalType_1;
};
// Native definition for COM marshalling of UnityEngine.XR.InputFeatureUsage
struct InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_com
{
Il2CppChar* ___m_Name_0;
uint32_t ___m_InternalType_1;
};
// UnityEngine.XR.MeshGenerationResult
struct MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A
{
public:
// UnityEngine.XR.MeshId UnityEngine.XR.MeshGenerationResult::<MeshId>k__BackingField
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___U3CMeshIdU3Ek__BackingField_0;
// UnityEngine.Mesh UnityEngine.XR.MeshGenerationResult::<Mesh>k__BackingField
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___U3CMeshU3Ek__BackingField_1;
// UnityEngine.MeshCollider UnityEngine.XR.MeshGenerationResult::<MeshCollider>k__BackingField
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___U3CMeshColliderU3Ek__BackingField_2;
// UnityEngine.XR.MeshGenerationStatus UnityEngine.XR.MeshGenerationResult::<Status>k__BackingField
int32_t ___U3CStatusU3Ek__BackingField_3;
// UnityEngine.XR.MeshVertexAttributes UnityEngine.XR.MeshGenerationResult::<Attributes>k__BackingField
int32_t ___U3CAttributesU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CMeshIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A, ___U3CMeshIdU3Ek__BackingField_0)); }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A get_U3CMeshIdU3Ek__BackingField_0() const { return ___U3CMeshIdU3Ek__BackingField_0; }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * get_address_of_U3CMeshIdU3Ek__BackingField_0() { return &___U3CMeshIdU3Ek__BackingField_0; }
inline void set_U3CMeshIdU3Ek__BackingField_0(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A value)
{
___U3CMeshIdU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CMeshU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A, ___U3CMeshU3Ek__BackingField_1)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_U3CMeshU3Ek__BackingField_1() const { return ___U3CMeshU3Ek__BackingField_1; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_U3CMeshU3Ek__BackingField_1() { return &___U3CMeshU3Ek__BackingField_1; }
inline void set_U3CMeshU3Ek__BackingField_1(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___U3CMeshU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CMeshU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CMeshColliderU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A, ___U3CMeshColliderU3Ek__BackingField_2)); }
inline MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * get_U3CMeshColliderU3Ek__BackingField_2() const { return ___U3CMeshColliderU3Ek__BackingField_2; }
inline MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE ** get_address_of_U3CMeshColliderU3Ek__BackingField_2() { return &___U3CMeshColliderU3Ek__BackingField_2; }
inline void set_U3CMeshColliderU3Ek__BackingField_2(MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * value)
{
___U3CMeshColliderU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CMeshColliderU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CStatusU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A, ___U3CStatusU3Ek__BackingField_3)); }
inline int32_t get_U3CStatusU3Ek__BackingField_3() const { return ___U3CStatusU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3CStatusU3Ek__BackingField_3() { return &___U3CStatusU3Ek__BackingField_3; }
inline void set_U3CStatusU3Ek__BackingField_3(int32_t value)
{
___U3CStatusU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CAttributesU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A, ___U3CAttributesU3Ek__BackingField_4)); }
inline int32_t get_U3CAttributesU3Ek__BackingField_4() const { return ___U3CAttributesU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CAttributesU3Ek__BackingField_4() { return &___U3CAttributesU3Ek__BackingField_4; }
inline void set_U3CAttributesU3Ek__BackingField_4(int32_t value)
{
___U3CAttributesU3Ek__BackingField_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.MeshGenerationResult
struct MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshaled_pinvoke
{
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___U3CMeshIdU3Ek__BackingField_0;
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___U3CMeshU3Ek__BackingField_1;
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___U3CMeshColliderU3Ek__BackingField_2;
int32_t ___U3CStatusU3Ek__BackingField_3;
int32_t ___U3CAttributesU3Ek__BackingField_4;
};
// Native definition for COM marshalling of UnityEngine.XR.MeshGenerationResult
struct MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshaled_com
{
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___U3CMeshIdU3Ek__BackingField_0;
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___U3CMeshU3Ek__BackingField_1;
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___U3CMeshColliderU3Ek__BackingField_2;
int32_t ___U3CStatusU3Ek__BackingField_3;
int32_t ___U3CAttributesU3Ek__BackingField_4;
};
// UnityEngine.XR.MeshInfo
struct MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3
{
public:
// UnityEngine.XR.MeshId UnityEngine.XR.MeshInfo::<MeshId>k__BackingField
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___U3CMeshIdU3Ek__BackingField_0;
// UnityEngine.XR.MeshChangeState UnityEngine.XR.MeshInfo::<ChangeState>k__BackingField
int32_t ___U3CChangeStateU3Ek__BackingField_1;
// System.Int32 UnityEngine.XR.MeshInfo::<PriorityHint>k__BackingField
int32_t ___U3CPriorityHintU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CMeshIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3, ___U3CMeshIdU3Ek__BackingField_0)); }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A get_U3CMeshIdU3Ek__BackingField_0() const { return ___U3CMeshIdU3Ek__BackingField_0; }
inline MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * get_address_of_U3CMeshIdU3Ek__BackingField_0() { return &___U3CMeshIdU3Ek__BackingField_0; }
inline void set_U3CMeshIdU3Ek__BackingField_0(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A value)
{
___U3CMeshIdU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CChangeStateU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3, ___U3CChangeStateU3Ek__BackingField_1)); }
inline int32_t get_U3CChangeStateU3Ek__BackingField_1() const { return ___U3CChangeStateU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CChangeStateU3Ek__BackingField_1() { return &___U3CChangeStateU3Ek__BackingField_1; }
inline void set_U3CChangeStateU3Ek__BackingField_1(int32_t value)
{
___U3CChangeStateU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CPriorityHintU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3, ___U3CPriorityHintU3Ek__BackingField_2)); }
inline int32_t get_U3CPriorityHintU3Ek__BackingField_2() const { return ___U3CPriorityHintU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CPriorityHintU3Ek__BackingField_2() { return &___U3CPriorityHintU3Ek__BackingField_2; }
inline void set_U3CPriorityHintU3Ek__BackingField_2(int32_t value)
{
___U3CPriorityHintU3Ek__BackingField_2 = value;
}
};
// UnityEngine.XR.XRNodeState
struct XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A
{
public:
// UnityEngine.XR.XRNode UnityEngine.XR.XRNodeState::m_Type
int32_t ___m_Type_0;
// UnityEngine.XR.AvailableTrackingData UnityEngine.XR.XRNodeState::m_AvailableFields
int32_t ___m_AvailableFields_1;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Position_2;
// UnityEngine.Quaternion UnityEngine.XR.XRNodeState::m_Rotation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___m_Rotation_3;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Velocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Velocity_4;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_AngularVelocity
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AngularVelocity_5;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Acceleration
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Acceleration_6;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_AngularAcceleration
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_AngularAcceleration_7;
// System.Int32 UnityEngine.XR.XRNodeState::m_Tracked
int32_t ___m_Tracked_8;
// System.UInt64 UnityEngine.XR.XRNodeState::m_UniqueID
uint64_t ___m_UniqueID_9;
public:
inline static int32_t get_offset_of_m_Type_0() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Type_0)); }
inline int32_t get_m_Type_0() const { return ___m_Type_0; }
inline int32_t* get_address_of_m_Type_0() { return &___m_Type_0; }
inline void set_m_Type_0(int32_t value)
{
___m_Type_0 = value;
}
inline static int32_t get_offset_of_m_AvailableFields_1() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_AvailableFields_1)); }
inline int32_t get_m_AvailableFields_1() const { return ___m_AvailableFields_1; }
inline int32_t* get_address_of_m_AvailableFields_1() { return &___m_AvailableFields_1; }
inline void set_m_AvailableFields_1(int32_t value)
{
___m_AvailableFields_1 = value;
}
inline static int32_t get_offset_of_m_Position_2() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Position_2)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Position_2() const { return ___m_Position_2; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Position_2() { return &___m_Position_2; }
inline void set_m_Position_2(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Position_2 = value;
}
inline static int32_t get_offset_of_m_Rotation_3() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Rotation_3)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_m_Rotation_3() const { return ___m_Rotation_3; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_m_Rotation_3() { return &___m_Rotation_3; }
inline void set_m_Rotation_3(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___m_Rotation_3 = value;
}
inline static int32_t get_offset_of_m_Velocity_4() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Velocity_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Velocity_4() const { return ___m_Velocity_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Velocity_4() { return &___m_Velocity_4; }
inline void set_m_Velocity_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Velocity_4 = value;
}
inline static int32_t get_offset_of_m_AngularVelocity_5() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_AngularVelocity_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AngularVelocity_5() const { return ___m_AngularVelocity_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AngularVelocity_5() { return &___m_AngularVelocity_5; }
inline void set_m_AngularVelocity_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AngularVelocity_5 = value;
}
inline static int32_t get_offset_of_m_Acceleration_6() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Acceleration_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Acceleration_6() const { return ___m_Acceleration_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Acceleration_6() { return &___m_Acceleration_6; }
inline void set_m_Acceleration_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Acceleration_6 = value;
}
inline static int32_t get_offset_of_m_AngularAcceleration_7() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_AngularAcceleration_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_AngularAcceleration_7() const { return ___m_AngularAcceleration_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_AngularAcceleration_7() { return &___m_AngularAcceleration_7; }
inline void set_m_AngularAcceleration_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_AngularAcceleration_7 = value;
}
inline static int32_t get_offset_of_m_Tracked_8() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_Tracked_8)); }
inline int32_t get_m_Tracked_8() const { return ___m_Tracked_8; }
inline int32_t* get_address_of_m_Tracked_8() { return &___m_Tracked_8; }
inline void set_m_Tracked_8(int32_t value)
{
___m_Tracked_8 = value;
}
inline static int32_t get_offset_of_m_UniqueID_9() { return static_cast<int32_t>(offsetof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A, ___m_UniqueID_9)); }
inline uint64_t get_m_UniqueID_9() const { return ___m_UniqueID_9; }
inline uint64_t* get_address_of_m_UniqueID_9() { return &___m_UniqueID_9; }
inline void set_m_UniqueID_9(uint64_t value)
{
___m_UniqueID_9 = value;
}
};
// System.Action`1<System.Boolean>
struct Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.XR.InputDevice>
struct Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.XR.MeshGenerationResult>
struct Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.XR.XRInputSubsystem>
struct Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.XR.XRNodeState>
struct Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 : public MulticastDelegate_t
{
public:
public:
};
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
}
};
// UnityEngine.Collider
struct Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.XR.XRDisplaySubsystem
struct XRDisplaySubsystem_t2E090C1B6925B11C9296DBBAF57F9364AADA13E0 : public IntegratedSubsystem_1_tA1D5F6FF883C281DC92140F8547E38FBA9A4F7E1
{
public:
public:
};
struct XRDisplaySubsystem_t2E090C1B6925B11C9296DBBAF57F9364AADA13E0_StaticFields
{
public:
// System.Action`1<System.Boolean> UnityEngine.XR.XRDisplaySubsystem::displayFocusChanged
Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * ___displayFocusChanged_2;
public:
inline static int32_t get_offset_of_displayFocusChanged_2() { return static_cast<int32_t>(offsetof(XRDisplaySubsystem_t2E090C1B6925B11C9296DBBAF57F9364AADA13E0_StaticFields, ___displayFocusChanged_2)); }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * get_displayFocusChanged_2() const { return ___displayFocusChanged_2; }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD ** get_address_of_displayFocusChanged_2() { return &___displayFocusChanged_2; }
inline void set_displayFocusChanged_2(Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * value)
{
___displayFocusChanged_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___displayFocusChanged_2), (void*)value);
}
};
// UnityEngine.XR.XRDisplaySubsystem_XRRenderPass
struct XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13
{
public:
// System.IntPtr UnityEngine.XR.XRDisplaySubsystem_XRRenderPass::displaySubsystemInstance
intptr_t ___displaySubsystemInstance_0;
// System.Int32 UnityEngine.XR.XRDisplaySubsystem_XRRenderPass::renderPassIndex
int32_t ___renderPassIndex_1;
// UnityEngine.Rendering.RenderTargetIdentifier UnityEngine.XR.XRDisplaySubsystem_XRRenderPass::renderTarget
RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B ___renderTarget_2;
// UnityEngine.RenderTextureDescriptor UnityEngine.XR.XRDisplaySubsystem_XRRenderPass::renderTargetDesc
RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E ___renderTargetDesc_3;
// System.Boolean UnityEngine.XR.XRDisplaySubsystem_XRRenderPass::shouldFillOutDepth
bool ___shouldFillOutDepth_4;
// System.Int32 UnityEngine.XR.XRDisplaySubsystem_XRRenderPass::cullingPassIndex
int32_t ___cullingPassIndex_5;
public:
inline static int32_t get_offset_of_displaySubsystemInstance_0() { return static_cast<int32_t>(offsetof(XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13, ___displaySubsystemInstance_0)); }
inline intptr_t get_displaySubsystemInstance_0() const { return ___displaySubsystemInstance_0; }
inline intptr_t* get_address_of_displaySubsystemInstance_0() { return &___displaySubsystemInstance_0; }
inline void set_displaySubsystemInstance_0(intptr_t value)
{
___displaySubsystemInstance_0 = value;
}
inline static int32_t get_offset_of_renderPassIndex_1() { return static_cast<int32_t>(offsetof(XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13, ___renderPassIndex_1)); }
inline int32_t get_renderPassIndex_1() const { return ___renderPassIndex_1; }
inline int32_t* get_address_of_renderPassIndex_1() { return &___renderPassIndex_1; }
inline void set_renderPassIndex_1(int32_t value)
{
___renderPassIndex_1 = value;
}
inline static int32_t get_offset_of_renderTarget_2() { return static_cast<int32_t>(offsetof(XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13, ___renderTarget_2)); }
inline RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B get_renderTarget_2() const { return ___renderTarget_2; }
inline RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B * get_address_of_renderTarget_2() { return &___renderTarget_2; }
inline void set_renderTarget_2(RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B value)
{
___renderTarget_2 = value;
}
inline static int32_t get_offset_of_renderTargetDesc_3() { return static_cast<int32_t>(offsetof(XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13, ___renderTargetDesc_3)); }
inline RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E get_renderTargetDesc_3() const { return ___renderTargetDesc_3; }
inline RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E * get_address_of_renderTargetDesc_3() { return &___renderTargetDesc_3; }
inline void set_renderTargetDesc_3(RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E value)
{
___renderTargetDesc_3 = value;
}
inline static int32_t get_offset_of_shouldFillOutDepth_4() { return static_cast<int32_t>(offsetof(XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13, ___shouldFillOutDepth_4)); }
inline bool get_shouldFillOutDepth_4() const { return ___shouldFillOutDepth_4; }
inline bool* get_address_of_shouldFillOutDepth_4() { return &___shouldFillOutDepth_4; }
inline void set_shouldFillOutDepth_4(bool value)
{
___shouldFillOutDepth_4 = value;
}
inline static int32_t get_offset_of_cullingPassIndex_5() { return static_cast<int32_t>(offsetof(XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13, ___cullingPassIndex_5)); }
inline int32_t get_cullingPassIndex_5() const { return ___cullingPassIndex_5; }
inline int32_t* get_address_of_cullingPassIndex_5() { return &___cullingPassIndex_5; }
inline void set_cullingPassIndex_5(int32_t value)
{
___cullingPassIndex_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.XRDisplaySubsystem/XRRenderPass
struct XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshaled_pinvoke
{
intptr_t ___displaySubsystemInstance_0;
int32_t ___renderPassIndex_1;
RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B ___renderTarget_2;
RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E ___renderTargetDesc_3;
int32_t ___shouldFillOutDepth_4;
int32_t ___cullingPassIndex_5;
};
// Native definition for COM marshalling of UnityEngine.XR.XRDisplaySubsystem/XRRenderPass
struct XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshaled_com
{
intptr_t ___displaySubsystemInstance_0;
int32_t ___renderPassIndex_1;
RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B ___renderTarget_2;
RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E ___renderTargetDesc_3;
int32_t ___shouldFillOutDepth_4;
int32_t ___cullingPassIndex_5;
};
// UnityEngine.XR.XRDisplaySubsystemDescriptor
struct XRDisplaySubsystemDescriptor_tC24B1C560B0C50AD3094D5F22BFFD25DD7AE6259 : public IntegratedSubsystemDescriptor_1_t92C33FD6897AFD92459369C236D3447735C3D6E5
{
public:
public:
};
// UnityEngine.XR.XRInputSubsystem
struct XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 : public IntegratedSubsystem_1_t648AE5E2D40F3159DD68D2AFD4B5ECA29920149D
{
public:
// System.Action`1<UnityEngine.XR.XRInputSubsystem> UnityEngine.XR.XRInputSubsystem::trackingOriginUpdated
Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 * ___trackingOriginUpdated_2;
// System.Action`1<UnityEngine.XR.XRInputSubsystem> UnityEngine.XR.XRInputSubsystem::boundaryChanged
Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 * ___boundaryChanged_3;
// System.Collections.Generic.List`1<System.UInt64> UnityEngine.XR.XRInputSubsystem::m_DeviceIdsCache
List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * ___m_DeviceIdsCache_4;
public:
inline static int32_t get_offset_of_trackingOriginUpdated_2() { return static_cast<int32_t>(offsetof(XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7, ___trackingOriginUpdated_2)); }
inline Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 * get_trackingOriginUpdated_2() const { return ___trackingOriginUpdated_2; }
inline Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 ** get_address_of_trackingOriginUpdated_2() { return &___trackingOriginUpdated_2; }
inline void set_trackingOriginUpdated_2(Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 * value)
{
___trackingOriginUpdated_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___trackingOriginUpdated_2), (void*)value);
}
inline static int32_t get_offset_of_boundaryChanged_3() { return static_cast<int32_t>(offsetof(XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7, ___boundaryChanged_3)); }
inline Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 * get_boundaryChanged_3() const { return ___boundaryChanged_3; }
inline Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 ** get_address_of_boundaryChanged_3() { return &___boundaryChanged_3; }
inline void set_boundaryChanged_3(Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 * value)
{
___boundaryChanged_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___boundaryChanged_3), (void*)value);
}
inline static int32_t get_offset_of_m_DeviceIdsCache_4() { return static_cast<int32_t>(offsetof(XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7, ___m_DeviceIdsCache_4)); }
inline List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * get_m_DeviceIdsCache_4() const { return ___m_DeviceIdsCache_4; }
inline List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 ** get_address_of_m_DeviceIdsCache_4() { return &___m_DeviceIdsCache_4; }
inline void set_m_DeviceIdsCache_4(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * value)
{
___m_DeviceIdsCache_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DeviceIdsCache_4), (void*)value);
}
};
// UnityEngine.XR.XRInputSubsystemDescriptor
struct XRInputSubsystemDescriptor_t0695204904011F75FF666A5F623C98FBCC163AD5 : public IntegratedSubsystemDescriptor_1_t13988C31A891A4EAAA0A3C89EC5A51F23584F18B
{
public:
public:
};
// UnityEngine.XR.XRMeshSubsystem
struct XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 : public IntegratedSubsystem_1_t808F7E2ADCA546A132C411EB61297ADCB67BDFC5
{
public:
public:
};
// UnityEngine.XR.XRMeshSubsystemDescriptor
struct XRMeshSubsystemDescriptor_t714B4140E276BE215234C3BB3F252D6C12A23AFB : public IntegratedSubsystemDescriptor_1_t9CE6049A97B62041547D75D3A8D31B5F02DE7751
{
public:
public:
};
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
// UnityEngine.MeshCollider
struct MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE : public Collider_t0FEEB36760860AD21B3B1F0509C365B393EC4BDF
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Void System.Action`1<UnityEngine.XR.InputDevice>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m76AAC7959D7259C4B9B7B271344C095C307FAC20_gshared (Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * __this, InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC ___obj0, const RuntimeMethod* method);
// System.Void System.Action`1<UnityEngine.XR.XRNodeState>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mADC0DCCED2D4577B141EA288C2B3C66FFE15D489_gshared (Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * __this, XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A ___obj0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_mC55E2F641D17BC3D08E6A03E16814B46518C257A_gshared (List_1_tDECBF737A96DF978685F6386C44B9284190E43C7 * __this, const RuntimeMethod* method);
// System.Void System.Action`1<System.Boolean>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m45E8F9900F9DB395C48A868A7C6A83BDD7FC692F_gshared (Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * __this, bool ___obj0, const RuntimeMethod* method);
// System.Void UnityEngine.IntegratedSubsystem`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntegratedSubsystem_1__ctor_m4F49ABCD91074575D743F3AA68170017E2A29B37_gshared (IntegratedSubsystem_1_tA39FA5C25840EB481167108B3E02F7F09E901583 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.IntegratedSubsystemDescriptor`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntegratedSubsystemDescriptor_1__ctor_m3E14A32CB73A1C21C69CC9860EE2AE95F841876D_gshared (IntegratedSubsystemDescriptor_1_t26346DD8E0AD1C04F25B94E8AD18577ABA15EBCB * __this, const RuntimeMethod* method);
// System.Void System.Action`1<System.Object>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mB86FC1B303E77C41ED0E94FC3592A9CF8DA571D5_gshared (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.Action`1<UnityEngine.XR.MeshGenerationResult>::Invoke(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mB246C65D547D955CD43C9F82F032CC2CF9C4918B_gshared (Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C * __this, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A ___obj0, const RuntimeMethod* method);
// System.UInt64 UnityEngine.XR.Bone::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Bone_get_deviceId_mE5A6306D5B6120E87D63A7E045B42277CA53D849 (Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * __this, const RuntimeMethod* method);
// System.UInt32 UnityEngine.XR.Bone::get_featureIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Bone_get_featureIndex_m84C8E545D82C11C190E3C35FED5759B5514FC6F3 (Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.Bone::Equals(UnityEngine.XR.Bone)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Bone_Equals_m99199B1A2C3CBDFC26AC7F73721710A1F7CDB54C (Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * __this, Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.Bone::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Bone_Equals_m47F29F33D5B4C9512F16A4EF7056F1EBBEF66F8B (Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.UInt64::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt64_GetHashCode_mCBB4031BF70D0CBD023B4D71F4FEA37BE2C749AD (uint64_t* __this, const RuntimeMethod* method);
// System.Int32 System.UInt32::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt32_GetHashCode_m791E3E038DAA8DC313758009B1C532CD91194B0D (uint32_t* __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.Bone::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bone_GetHashCode_m36D97E3F108BDE9D1617462890CD46B06366090B (Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * __this, const RuntimeMethod* method);
// System.UInt64 UnityEngine.XR.Eyes::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Eyes_get_deviceId_mC982142E4A1DE53673F6F7DF4782D5C9B9AAF666 (Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * __this, const RuntimeMethod* method);
// System.UInt32 UnityEngine.XR.Eyes::get_featureIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Eyes_get_featureIndex_mE7FBDCC59D666CD528D299E0F09F3C2F6CC71050 (Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.Eyes::Equals(UnityEngine.XR.Eyes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Eyes_Equals_mA2712C0D6DA04847648E54FDAEF6FE486E615EAC (Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * __this, Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.Eyes::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Eyes_Equals_m705DC7D7DC029DAC048DB35D0268F6555802A617 (Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.Eyes::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Eyes_GetHashCode_mEB3889815F535D61533BA383618A50890A713EB5 (Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * __this, const RuntimeMethod* method);
// System.UInt64 UnityEngine.XR.Hand::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Hand_get_deviceId_m6590B16BC269AB4F854A287E1C17ABB08238F255 (Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * __this, const RuntimeMethod* method);
// System.UInt32 UnityEngine.XR.Hand::get_featureIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Hand_get_featureIndex_m4F87B7990C9AF500A9554940CF8A594E0572B5DF (Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.Hand::Equals(UnityEngine.XR.Hand)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hand_Equals_m5644A7961F2EC387F122CF68E17DF0627CE0C88F (Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * __this, Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.Hand::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hand_Equals_mF97E28F0278AEC0B5D19211B05158FD5203EAF10 (Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.Hand::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Hand_GetHashCode_m866ECC60F746BABB684B68A5347C5151835EB022 (Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.InputDevice::.ctor(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice__ctor_m534E7C5808B15C01665478F94683451DD22BA9E2 (InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * __this, uint64_t ___deviceId0, const RuntimeMethod* method);
// System.UInt64 UnityEngine.XR.InputDevice::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t InputDevice_get_deviceId_m5F0797FAF76FE3816D92F01005989F287E582357 (InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.InputDevice::Equals(UnityEngine.XR.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_Equals_mDBBBBCC8B65821B8DDE004CAC76A45E53F54767C (InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * __this, InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.InputDevice::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_Equals_m741ED20972E238BC41A52D3AEB43A737E0FC5066 (InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.InputDevice::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDevice_GetHashCode_mBAC2C81FBE7993722897EA64D22E1147A7C6A175 (InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * __this, const RuntimeMethod* method);
// System.Void System.Action`1<UnityEngine.XR.InputDevice>::Invoke(!0)
inline void Action_1_Invoke_m76AAC7959D7259C4B9B7B271344C095C307FAC20 (Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * __this, InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 *, InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC , const RuntimeMethod*))Action_1_Invoke_m76AAC7959D7259C4B9B7B271344C095C307FAC20_gshared)(__this, ___obj0, method);
}
// System.String UnityEngine.XR.InputFeatureUsage::get_name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputFeatureUsage_get_name_m3415EE4B71906002970C499B404DDAB37687C273 (InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * __this, const RuntimeMethod* method);
// UnityEngine.XR.InputFeatureType UnityEngine.XR.InputFeatureUsage::get_internalType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputFeatureUsage_get_internalType_mFBE2559CC6C05A4461C8A258CB459628FC76EE6C (InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.InputFeatureUsage::Equals(UnityEngine.XR.InputFeatureUsage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputFeatureUsage_Equals_mF22D83638881FE903ED9CC17763F57B986807742 (InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * __this, InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.InputFeatureUsage::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputFeatureUsage_Equals_m471A010DF80FA3BC39B4F89743E9D861852E3FFE (InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.InputFeatureUsage::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputFeatureUsage_GetHashCode_m083565A56980BD5DF656314275D525355D913F69 (InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.XRNodeState::set_uniqueID(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRNodeState_set_uniqueID_m0A71A6EE7B7C516C9DEAE99BEECE66B21463F2E3 (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.XRNodeState::set_nodeType(UnityEngine.XR.XRNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRNodeState_set_nodeType_m0C4B5A3021F19FCA3B79DC704D0F4E334EB7E6CE (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.XRNodeState::set_tracked(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRNodeState_set_tracked_mC82DD9C7B6F061C452A0D89DE1A018CF68E581E2 (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, bool ___value0, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495 (RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Action`1<UnityEngine.XR.XRNodeState>::Invoke(!0)
inline void Action_1_Invoke_mADC0DCCED2D4577B141EA288C2B3C66FFE15D489 (Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * __this, XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 *, XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A , const RuntimeMethod*))Action_1_Invoke_mADC0DCCED2D4577B141EA288C2B3C66FFE15D489_gshared)(__this, ___obj0, method);
}
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState>::Clear()
inline void List_1_Clear_mC55E2F641D17BC3D08E6A03E16814B46518C257A (List_1_tDECBF737A96DF978685F6386C44B9284190E43C7 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tDECBF737A96DF978685F6386C44B9284190E43C7 *, const RuntimeMethod*))List_1_Clear_mC55E2F641D17BC3D08E6A03E16814B46518C257A_gshared)(__this, method);
}
// System.Void UnityEngine.XR.InputTracking::GetNodeStates_Internal(System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputTracking_GetNodeStates_Internal_mB064ACE5931EE4484D85E843ABB4FAF48095EB5A (List_1_tDECBF737A96DF978685F6386C44B9284190E43C7 * ___nodeStates0, const RuntimeMethod* method);
// UnityEngine.XR.MeshId UnityEngine.XR.MeshGenerationResult::get_MeshId()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A MeshGenerationResult_get_MeshId_m1113338E0F307CF16B4B4BE21666294DD4D256E1_inline (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method);
// UnityEngine.Mesh UnityEngine.XR.MeshGenerationResult::get_Mesh()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * MeshGenerationResult_get_Mesh_m0EBB5B1AD63C64D39486EFFBE21166DC6C3E7575_inline (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method);
// UnityEngine.MeshCollider UnityEngine.XR.MeshGenerationResult::get_MeshCollider()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * MeshGenerationResult_get_MeshCollider_m6ED813F4C16388132DDCD6A65240DBF3C165E524_inline (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method);
// UnityEngine.XR.MeshGenerationStatus UnityEngine.XR.MeshGenerationResult::get_Status()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t MeshGenerationResult_get_Status_mB2A2937F3CEA5264B977F6FAAD054CE353CDC248_inline (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method);
// UnityEngine.XR.MeshVertexAttributes UnityEngine.XR.MeshGenerationResult::get_Attributes()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t MeshGenerationResult_get_Attributes_m2130FD5614F6772B24E31DD7127EB66066158A90_inline (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.MeshGenerationResult::Equals(UnityEngine.XR.MeshGenerationResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshGenerationResult_Equals_m4E7C54861B2C6D79D1FD39E4C4A2F37A27C91194 (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.MeshGenerationResult::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshGenerationResult_Equals_m0F47888DAC3E658A94AD392796FBBE990CA8138E (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.MeshId::Equals(UnityEngine.XR.MeshId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshId_Equals_mA59C2EE90132C307BBFC93663039D1807FCB156F (MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * __this, MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___other0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.MeshId::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MeshId_GetHashCode_m96FC65CD0D1CA2FEEAB91581073E173E9EC51626 (MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.HashCodeHelper::Combine(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCodeHelper_Combine_m46115CFBF4C6C04B03559C1E6ABCE8D515F34E5C (int32_t ___hash10, int32_t ___hash21, const RuntimeMethod* method);
// System.Int32 System.Int32::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A (int32_t* __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.MeshGenerationResult::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MeshGenerationResult_GetHashCode_m64BDB58FABE08353FF4AE98EF350B938D93CD8F0 (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method);
// System.String System.UInt64::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt64_ToString_m46B46DBB5F74DCDC6082A8AC8C695E2295925E71 (uint64_t* __this, String_t* ___format0, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method);
// System.String UnityEngine.XR.MeshId::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MeshId_ToString_m765CD93EFB3D48FC601CC1350A3DBDDD0B55F1A0 (MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.MeshId::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshId_Equals_m3EB8E8B8FDA84194D7684B76C02686B839CBE8AA (MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// UnityEngine.XR.MeshId UnityEngine.XR.MeshInfo::get_MeshId()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A MeshInfo_get_MeshId_mCADC4A52D7A1229FC4FCC930D320201BE4DFA7C7_inline (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, const RuntimeMethod* method);
// UnityEngine.XR.MeshChangeState UnityEngine.XR.MeshInfo::get_ChangeState()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t MeshInfo_get_ChangeState_m841D373DCDEDA4C40AEF7D40A56062C2048FD730_inline (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.MeshInfo::get_PriorityHint()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t MeshInfo_get_PriorityHint_m5BD302D8B09FFCBE1C1738A7DB1F1A92ED74429F_inline (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.MeshInfo::set_PriorityHint(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MeshInfo_set_PriorityHint_m1FFF79BA0BCB6070474EB829A357F6259D97CE36_inline (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.MeshInfo::Equals(UnityEngine.XR.MeshInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshInfo_Equals_m72DBC2F9D39A5B19A80C01E74CFD3E9013073414 (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.MeshInfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshInfo_Equals_m8D4CC363A05923F765E32A26F1E595D2B80B5C0D (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Int32::Equals(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_Equals_mC8C45B8899F291D55A6152C8FEDB3CFFF181170B (int32_t* __this, int32_t ___obj0, const RuntimeMethod* method);
// System.Int32 UnityEngine.XR.MeshInfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MeshInfo_GetHashCode_mAA2DB4C2D99752A01FCBF238B89CC7EAD0B2586A (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, const RuntimeMethod* method);
// System.Void System.Action`1<System.Boolean>::Invoke(!0)
inline void Action_1_Invoke_m45E8F9900F9DB395C48A868A7C6A83BDD7FC692F (Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * __this, bool ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD *, bool, const RuntimeMethod*))Action_1_Invoke_m45E8F9900F9DB395C48A868A7C6A83BDD7FC692F_gshared)(__this, ___obj0, method);
}
// System.Void UnityEngine.IntegratedSubsystem`1<UnityEngine.XR.XRDisplaySubsystemDescriptor>::.ctor()
inline void IntegratedSubsystem_1__ctor_m6C59A971C471B3036B0A4A948338736212665088 (IntegratedSubsystem_1_tA1D5F6FF883C281DC92140F8547E38FBA9A4F7E1 * __this, const RuntimeMethod* method)
{
(( void (*) (IntegratedSubsystem_1_tA1D5F6FF883C281DC92140F8547E38FBA9A4F7E1 *, const RuntimeMethod*))IntegratedSubsystem_1__ctor_m4F49ABCD91074575D743F3AA68170017E2A29B37_gshared)(__this, method);
}
// System.Void UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.XR.XRDisplaySubsystem>::.ctor()
inline void IntegratedSubsystemDescriptor_1__ctor_m6117F01E29F54F0CC64A4F7459678F5917DDDAA4 (IntegratedSubsystemDescriptor_1_t92C33FD6897AFD92459369C236D3447735C3D6E5 * __this, const RuntimeMethod* method)
{
(( void (*) (IntegratedSubsystemDescriptor_1_t92C33FD6897AFD92459369C236D3447735C3D6E5 *, const RuntimeMethod*))IntegratedSubsystemDescriptor_1__ctor_m3E14A32CB73A1C21C69CC9860EE2AE95F841876D_gshared)(__this, method);
}
// UnityEngine.IntegratedSubsystem UnityEngine.Internal_SubsystemInstances::Internal_GetInstanceByPtr(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026 * Internal_SubsystemInstances_Internal_GetInstanceByPtr_m2A3E2B194F743DA1505586132038FA64DF8FB407 (intptr_t ___ptr0, const RuntimeMethod* method);
// System.Void System.Action`1<UnityEngine.XR.XRInputSubsystem>::Invoke(!0)
inline void Action_1_Invoke_m4CB47E8F2868FBE68282A73D1E82C97387CC7224 (Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 * __this, XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 * ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 *, XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 *, const RuntimeMethod*))Action_1_Invoke_mB86FC1B303E77C41ED0E94FC3592A9CF8DA571D5_gshared)(__this, ___obj0, method);
}
// System.Void UnityEngine.IntegratedSubsystem`1<UnityEngine.XR.XRInputSubsystemDescriptor>::.ctor()
inline void IntegratedSubsystem_1__ctor_mBA2862C42655BCC9EDC76EE901CB6500A32DEA9D (IntegratedSubsystem_1_t648AE5E2D40F3159DD68D2AFD4B5ECA29920149D * __this, const RuntimeMethod* method)
{
(( void (*) (IntegratedSubsystem_1_t648AE5E2D40F3159DD68D2AFD4B5ECA29920149D *, const RuntimeMethod*))IntegratedSubsystem_1__ctor_m4F49ABCD91074575D743F3AA68170017E2A29B37_gshared)(__this, method);
}
// System.Void UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.XR.XRInputSubsystem>::.ctor()
inline void IntegratedSubsystemDescriptor_1__ctor_m3B5162617EB2232B4F2453003AF1AD8EBE78021D (IntegratedSubsystemDescriptor_1_t13988C31A891A4EAAA0A3C89EC5A51F23584F18B * __this, const RuntimeMethod* method)
{
(( void (*) (IntegratedSubsystemDescriptor_1_t13988C31A891A4EAAA0A3C89EC5A51F23584F18B *, const RuntimeMethod*))IntegratedSubsystemDescriptor_1__ctor_m3E14A32CB73A1C21C69CC9860EE2AE95F841876D_gshared)(__this, method);
}
// System.Boolean UnityEngine.XR.XRMeshSubsystem::GetMeshInfosAsList(System.Collections.Generic.List`1<UnityEngine.XR.MeshInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRMeshSubsystem_GetMeshInfosAsList_m5A19C05957573C4CA4536A69EBD3D41634820107 (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 * __this, List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661 * ___meshInfos0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.XRMeshSubsystem::GenerateMeshAsync_Injected(UnityEngine.XR.MeshId&,UnityEngine.Mesh,UnityEngine.MeshCollider,UnityEngine.XR.MeshVertexAttributes,System.Action`1<UnityEngine.XR.MeshGenerationResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRMeshSubsystem_GenerateMeshAsync_Injected_m1F782B9EA581FD36A2F73059865250F889947613 (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 * __this, MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * ___meshId0, Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh1, MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___meshCollider2, int32_t ___attributes3, Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C * ___onMeshGenerationComplete4, const RuntimeMethod* method);
// System.Void System.Action`1<UnityEngine.XR.MeshGenerationResult>::Invoke(!0)
inline void Action_1_Invoke_mB246C65D547D955CD43C9F82F032CC2CF9C4918B (Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C * __this, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C *, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A , const RuntimeMethod*))Action_1_Invoke_mB246C65D547D955CD43C9F82F032CC2CF9C4918B_gshared)(__this, ___obj0, method);
}
// System.Boolean UnityEngine.XR.XRMeshSubsystem::SetBoundingVolume_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRMeshSubsystem_SetBoundingVolume_Injected_m5489F8F5DB020D9C974B6CE3F481EC9EDBF43818 (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___origin0, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___extents1, const RuntimeMethod* method);
// System.Void UnityEngine.IntegratedSubsystem`1<UnityEngine.XR.XRMeshSubsystemDescriptor>::.ctor()
inline void IntegratedSubsystem_1__ctor_m8BC125DB36F9434B07EFAAF056356DD665057EE3 (IntegratedSubsystem_1_t808F7E2ADCA546A132C411EB61297ADCB67BDFC5 * __this, const RuntimeMethod* method)
{
(( void (*) (IntegratedSubsystem_1_t808F7E2ADCA546A132C411EB61297ADCB67BDFC5 *, const RuntimeMethod*))IntegratedSubsystem_1__ctor_m4F49ABCD91074575D743F3AA68170017E2A29B37_gshared)(__this, method);
}
// System.Void UnityEngine.IntegratedSubsystemDescriptor`1<UnityEngine.XR.XRMeshSubsystem>::.ctor()
inline void IntegratedSubsystemDescriptor_1__ctor_mF72F72B847AC92E53503FA2E6AA6100020B8B371 (IntegratedSubsystemDescriptor_1_t9CE6049A97B62041547D75D3A8D31B5F02DE7751 * __this, const RuntimeMethod* method)
{
(( void (*) (IntegratedSubsystemDescriptor_1_t9CE6049A97B62041547D75D3A8D31B5F02DE7751 *, const RuntimeMethod*))IntegratedSubsystemDescriptor_1__ctor_m3E14A32CB73A1C21C69CC9860EE2AE95F841876D_gshared)(__this, method);
}
// UnityEngine.XR.XRNode UnityEngine.XR.XRNodeState::get_nodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRNodeState_get_nodeType_m40ED41E75B0CD73974B0E6812AA33A3D69495AC7 (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.XRNodeState::TryGet(UnityEngine.Vector3,UnityEngine.XR.AvailableTrackingData,UnityEngine.Vector3&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRNodeState_TryGet_m1B4C4C8993A23503E69F253589F11458C3388C59 (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___inValue0, int32_t ___availabilityFlag1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___outValue2, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.XRNodeState::TryGetPosition(UnityEngine.Vector3&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRNodeState_TryGetPosition_mD3F619954C89FF16045960AAEF4D5218E17B6E8C (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___position0, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.XRNodeState::TryGet(UnityEngine.Quaternion,UnityEngine.XR.AvailableTrackingData,UnityEngine.Quaternion&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRNodeState_TryGet_mBE55684EC4CA3C034D1E1AD21AA221B70F3048DF (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___inValue0, int32_t ___availabilityFlag1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * ___outValue2, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.XRNodeState::TryGetRotation(UnityEngine.Quaternion&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRNodeState_TryGetRotation_m2AE7B2C4907BB94036A74133FEE1389E273D38B9 (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * ___rotation0, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Vector3::get_zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Vector3_get_zero_m3CDDCAE94581DF3BB16C4B40A100E28E9C6649C2 (const RuntimeMethod* method);
// UnityEngine.Quaternion UnityEngine.Quaternion::get_identity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 Quaternion_get_identity_m548B37D80F2DEE60E41D1F09BF6889B557BE1A64 (const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt64 UnityEngine.XR.Bone::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Bone_get_deviceId_mE5A6306D5B6120E87D63A7E045B42277CA53D849 (Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * __this, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
{
uint64_t L_0 = __this->get_m_DeviceId_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint64_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C uint64_t Bone_get_deviceId_mE5A6306D5B6120E87D63A7E045B42277CA53D849_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * _thisAdjusted = reinterpret_cast<Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *>(__this + _offset);
return Bone_get_deviceId_mE5A6306D5B6120E87D63A7E045B42277CA53D849(_thisAdjusted, method);
}
// System.UInt32 UnityEngine.XR.Bone::get_featureIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Bone_get_featureIndex_m84C8E545D82C11C190E3C35FED5759B5514FC6F3 (Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_FeatureIndex_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t Bone_get_featureIndex_m84C8E545D82C11C190E3C35FED5759B5514FC6F3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * _thisAdjusted = reinterpret_cast<Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *>(__this + _offset);
return Bone_get_featureIndex_m84C8E545D82C11C190E3C35FED5759B5514FC6F3(_thisAdjusted, method);
}
// System.Boolean UnityEngine.XR.Bone::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Bone_Equals_m47F29F33D5B4C9512F16A4EF7056F1EBBEF66F8B (Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Bone_Equals_m47F29F33D5B4C9512F16A4EF7056F1EBBEF66F8B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
RuntimeObject * L_0 = ___obj0;
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
V_1 = (bool)0;
goto IL_0024;
}
IL_0015:
{
RuntimeObject * L_2 = ___obj0;
bool L_3 = Bone_Equals_m99199B1A2C3CBDFC26AC7F73721710A1F7CDB54C((Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *)__this, ((*(Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *)((Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *)UnBox(L_2, Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
V_1 = L_3;
goto IL_0024;
}
IL_0024:
{
bool L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C bool Bone_Equals_m47F29F33D5B4C9512F16A4EF7056F1EBBEF66F8B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * _thisAdjusted = reinterpret_cast<Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *>(__this + _offset);
return Bone_Equals_m47F29F33D5B4C9512F16A4EF7056F1EBBEF66F8B(_thisAdjusted, ___obj0, method);
}
// System.Boolean UnityEngine.XR.Bone::Equals(UnityEngine.XR.Bone)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Bone_Equals_m99199B1A2C3CBDFC26AC7F73721710A1F7CDB54C (Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * __this, Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
uint64_t L_0 = Bone_get_deviceId_mE5A6306D5B6120E87D63A7E045B42277CA53D849((Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *)__this, /*hidden argument*/NULL);
uint64_t L_1 = Bone_get_deviceId_mE5A6306D5B6120E87D63A7E045B42277CA53D849((Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint64_t)L_0) == ((uint64_t)L_1))))
{
goto IL_0021;
}
}
{
uint32_t L_2 = Bone_get_featureIndex_m84C8E545D82C11C190E3C35FED5759B5514FC6F3((Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *)__this, /*hidden argument*/NULL);
uint32_t L_3 = Bone_get_featureIndex_m84C8E545D82C11C190E3C35FED5759B5514FC6F3((Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *)(&___other0), /*hidden argument*/NULL);
G_B3_0 = ((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0);
goto IL_0022;
}
IL_0021:
{
G_B3_0 = 0;
}
IL_0022:
{
V_0 = (bool)G_B3_0;
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C bool Bone_Equals_m99199B1A2C3CBDFC26AC7F73721710A1F7CDB54C_AdjustorThunk (RuntimeObject * __this, Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * _thisAdjusted = reinterpret_cast<Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *>(__this + _offset);
return Bone_Equals_m99199B1A2C3CBDFC26AC7F73721710A1F7CDB54C(_thisAdjusted, ___other0, method);
}
// System.Int32 UnityEngine.XR.Bone::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bone_GetHashCode_m36D97E3F108BDE9D1617462890CD46B06366090B (Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * __this, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
uint32_t V_1 = 0;
int32_t V_2 = 0;
{
uint64_t L_0 = Bone_get_deviceId_mE5A6306D5B6120E87D63A7E045B42277CA53D849((Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = UInt64_GetHashCode_mCBB4031BF70D0CBD023B4D71F4FEA37BE2C749AD((uint64_t*)(&V_0), /*hidden argument*/NULL);
uint32_t L_2 = Bone_get_featureIndex_m84C8E545D82C11C190E3C35FED5759B5514FC6F3((Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *)__this, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3 = UInt32_GetHashCode_m791E3E038DAA8DC313758009B1C532CD91194B0D((uint32_t*)(&V_1), /*hidden argument*/NULL);
V_2 = ((int32_t)((int32_t)L_1^(int32_t)((int32_t)((int32_t)L_3<<(int32_t)1))));
goto IL_0023;
}
IL_0023:
{
int32_t L_4 = V_2;
return L_4;
}
}
IL2CPP_EXTERN_C int32_t Bone_GetHashCode_m36D97E3F108BDE9D1617462890CD46B06366090B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 * _thisAdjusted = reinterpret_cast<Bone_tFCB543F0BF6DF30B7C4E29B6430D44860846BFB0 *>(__this + _offset);
return Bone_GetHashCode_m36D97E3F108BDE9D1617462890CD46B06366090B(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt64 UnityEngine.XR.Eyes::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Eyes_get_deviceId_mC982142E4A1DE53673F6F7DF4782D5C9B9AAF666 (Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * __this, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
{
uint64_t L_0 = __this->get_m_DeviceId_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint64_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C uint64_t Eyes_get_deviceId_mC982142E4A1DE53673F6F7DF4782D5C9B9AAF666_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * _thisAdjusted = reinterpret_cast<Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *>(__this + _offset);
return Eyes_get_deviceId_mC982142E4A1DE53673F6F7DF4782D5C9B9AAF666(_thisAdjusted, method);
}
// System.UInt32 UnityEngine.XR.Eyes::get_featureIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Eyes_get_featureIndex_mE7FBDCC59D666CD528D299E0F09F3C2F6CC71050 (Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_FeatureIndex_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t Eyes_get_featureIndex_mE7FBDCC59D666CD528D299E0F09F3C2F6CC71050_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * _thisAdjusted = reinterpret_cast<Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *>(__this + _offset);
return Eyes_get_featureIndex_mE7FBDCC59D666CD528D299E0F09F3C2F6CC71050(_thisAdjusted, method);
}
// System.Boolean UnityEngine.XR.Eyes::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Eyes_Equals_m705DC7D7DC029DAC048DB35D0268F6555802A617 (Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Eyes_Equals_m705DC7D7DC029DAC048DB35D0268F6555802A617_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
RuntimeObject * L_0 = ___obj0;
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
V_1 = (bool)0;
goto IL_0024;
}
IL_0015:
{
RuntimeObject * L_2 = ___obj0;
bool L_3 = Eyes_Equals_mA2712C0D6DA04847648E54FDAEF6FE486E615EAC((Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *)__this, ((*(Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *)((Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *)UnBox(L_2, Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
V_1 = L_3;
goto IL_0024;
}
IL_0024:
{
bool L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C bool Eyes_Equals_m705DC7D7DC029DAC048DB35D0268F6555802A617_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * _thisAdjusted = reinterpret_cast<Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *>(__this + _offset);
return Eyes_Equals_m705DC7D7DC029DAC048DB35D0268F6555802A617(_thisAdjusted, ___obj0, method);
}
// System.Boolean UnityEngine.XR.Eyes::Equals(UnityEngine.XR.Eyes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Eyes_Equals_mA2712C0D6DA04847648E54FDAEF6FE486E615EAC (Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * __this, Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
uint64_t L_0 = Eyes_get_deviceId_mC982142E4A1DE53673F6F7DF4782D5C9B9AAF666((Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *)__this, /*hidden argument*/NULL);
uint64_t L_1 = Eyes_get_deviceId_mC982142E4A1DE53673F6F7DF4782D5C9B9AAF666((Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint64_t)L_0) == ((uint64_t)L_1))))
{
goto IL_0021;
}
}
{
uint32_t L_2 = Eyes_get_featureIndex_mE7FBDCC59D666CD528D299E0F09F3C2F6CC71050((Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *)__this, /*hidden argument*/NULL);
uint32_t L_3 = Eyes_get_featureIndex_mE7FBDCC59D666CD528D299E0F09F3C2F6CC71050((Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *)(&___other0), /*hidden argument*/NULL);
G_B3_0 = ((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0);
goto IL_0022;
}
IL_0021:
{
G_B3_0 = 0;
}
IL_0022:
{
V_0 = (bool)G_B3_0;
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C bool Eyes_Equals_mA2712C0D6DA04847648E54FDAEF6FE486E615EAC_AdjustorThunk (RuntimeObject * __this, Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * _thisAdjusted = reinterpret_cast<Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *>(__this + _offset);
return Eyes_Equals_mA2712C0D6DA04847648E54FDAEF6FE486E615EAC(_thisAdjusted, ___other0, method);
}
// System.Int32 UnityEngine.XR.Eyes::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Eyes_GetHashCode_mEB3889815F535D61533BA383618A50890A713EB5 (Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * __this, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
uint32_t V_1 = 0;
int32_t V_2 = 0;
{
uint64_t L_0 = Eyes_get_deviceId_mC982142E4A1DE53673F6F7DF4782D5C9B9AAF666((Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = UInt64_GetHashCode_mCBB4031BF70D0CBD023B4D71F4FEA37BE2C749AD((uint64_t*)(&V_0), /*hidden argument*/NULL);
uint32_t L_2 = Eyes_get_featureIndex_mE7FBDCC59D666CD528D299E0F09F3C2F6CC71050((Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *)__this, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3 = UInt32_GetHashCode_m791E3E038DAA8DC313758009B1C532CD91194B0D((uint32_t*)(&V_1), /*hidden argument*/NULL);
V_2 = ((int32_t)((int32_t)L_1^(int32_t)((int32_t)((int32_t)L_3<<(int32_t)1))));
goto IL_0023;
}
IL_0023:
{
int32_t L_4 = V_2;
return L_4;
}
}
IL2CPP_EXTERN_C int32_t Eyes_GetHashCode_mEB3889815F535D61533BA383618A50890A713EB5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 * _thisAdjusted = reinterpret_cast<Eyes_tAFFCA10450B795F1FEBF89D9A59BA39662EC81A5 *>(__this + _offset);
return Eyes_GetHashCode_mEB3889815F535D61533BA383618A50890A713EB5(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt64 UnityEngine.XR.Hand::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Hand_get_deviceId_m6590B16BC269AB4F854A287E1C17ABB08238F255 (Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * __this, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
{
uint64_t L_0 = __this->get_m_DeviceId_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint64_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C uint64_t Hand_get_deviceId_m6590B16BC269AB4F854A287E1C17ABB08238F255_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * _thisAdjusted = reinterpret_cast<Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *>(__this + _offset);
return Hand_get_deviceId_m6590B16BC269AB4F854A287E1C17ABB08238F255(_thisAdjusted, method);
}
// System.UInt32 UnityEngine.XR.Hand::get_featureIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Hand_get_featureIndex_m4F87B7990C9AF500A9554940CF8A594E0572B5DF (Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_FeatureIndex_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t Hand_get_featureIndex_m4F87B7990C9AF500A9554940CF8A594E0572B5DF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * _thisAdjusted = reinterpret_cast<Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *>(__this + _offset);
return Hand_get_featureIndex_m4F87B7990C9AF500A9554940CF8A594E0572B5DF(_thisAdjusted, method);
}
// System.Boolean UnityEngine.XR.Hand::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hand_Equals_mF97E28F0278AEC0B5D19211B05158FD5203EAF10 (Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hand_Equals_mF97E28F0278AEC0B5D19211B05158FD5203EAF10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
RuntimeObject * L_0 = ___obj0;
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
V_1 = (bool)0;
goto IL_0024;
}
IL_0015:
{
RuntimeObject * L_2 = ___obj0;
bool L_3 = Hand_Equals_m5644A7961F2EC387F122CF68E17DF0627CE0C88F((Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *)__this, ((*(Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *)((Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *)UnBox(L_2, Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
V_1 = L_3;
goto IL_0024;
}
IL_0024:
{
bool L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C bool Hand_Equals_mF97E28F0278AEC0B5D19211B05158FD5203EAF10_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * _thisAdjusted = reinterpret_cast<Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *>(__this + _offset);
return Hand_Equals_mF97E28F0278AEC0B5D19211B05158FD5203EAF10(_thisAdjusted, ___obj0, method);
}
// System.Boolean UnityEngine.XR.Hand::Equals(UnityEngine.XR.Hand)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hand_Equals_m5644A7961F2EC387F122CF68E17DF0627CE0C88F (Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * __this, Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
uint64_t L_0 = Hand_get_deviceId_m6590B16BC269AB4F854A287E1C17ABB08238F255((Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *)__this, /*hidden argument*/NULL);
uint64_t L_1 = Hand_get_deviceId_m6590B16BC269AB4F854A287E1C17ABB08238F255((Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *)(&___other0), /*hidden argument*/NULL);
if ((!(((uint64_t)L_0) == ((uint64_t)L_1))))
{
goto IL_0021;
}
}
{
uint32_t L_2 = Hand_get_featureIndex_m4F87B7990C9AF500A9554940CF8A594E0572B5DF((Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *)__this, /*hidden argument*/NULL);
uint32_t L_3 = Hand_get_featureIndex_m4F87B7990C9AF500A9554940CF8A594E0572B5DF((Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *)(&___other0), /*hidden argument*/NULL);
G_B3_0 = ((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0);
goto IL_0022;
}
IL_0021:
{
G_B3_0 = 0;
}
IL_0022:
{
V_0 = (bool)G_B3_0;
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C bool Hand_Equals_m5644A7961F2EC387F122CF68E17DF0627CE0C88F_AdjustorThunk (RuntimeObject * __this, Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * _thisAdjusted = reinterpret_cast<Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *>(__this + _offset);
return Hand_Equals_m5644A7961F2EC387F122CF68E17DF0627CE0C88F(_thisAdjusted, ___other0, method);
}
// System.Int32 UnityEngine.XR.Hand::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Hand_GetHashCode_m866ECC60F746BABB684B68A5347C5151835EB022 (Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * __this, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
uint32_t V_1 = 0;
int32_t V_2 = 0;
{
uint64_t L_0 = Hand_get_deviceId_m6590B16BC269AB4F854A287E1C17ABB08238F255((Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = UInt64_GetHashCode_mCBB4031BF70D0CBD023B4D71F4FEA37BE2C749AD((uint64_t*)(&V_0), /*hidden argument*/NULL);
uint32_t L_2 = Hand_get_featureIndex_m4F87B7990C9AF500A9554940CF8A594E0572B5DF((Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *)__this, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3 = UInt32_GetHashCode_m791E3E038DAA8DC313758009B1C532CD91194B0D((uint32_t*)(&V_1), /*hidden argument*/NULL);
V_2 = ((int32_t)((int32_t)L_1^(int32_t)((int32_t)((int32_t)L_3<<(int32_t)1))));
goto IL_0023;
}
IL_0023:
{
int32_t L_4 = V_2;
return L_4;
}
}
IL2CPP_EXTERN_C int32_t Hand_GetHashCode_m866ECC60F746BABB684B68A5347C5151835EB022_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 * _thisAdjusted = reinterpret_cast<Hand_t46350F32E9C5CF7BCA7DCBEE0811731F26C20DA3 *>(__this + _offset);
return Hand_GetHashCode_m866ECC60F746BABB684B68A5347C5151835EB022(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 UnityEngine.XR.HashCodeHelper::Combine(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashCodeHelper_Combine_m46115CFBF4C6C04B03559C1E6ABCE8D515F34E5C (int32_t ___hash10, int32_t ___hash21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___hash10;
int32_t L_1 = ___hash21;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)((int32_t)486187739))), (int32_t)L_1));
goto IL_000d;
}
IL_000d:
{
int32_t L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.InputDevice
IL2CPP_EXTERN_C void InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshal_pinvoke(const InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC& unmarshaled, InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshaled_pinvoke& marshaled)
{
marshaled.___m_DeviceId_0 = unmarshaled.get_m_DeviceId_0();
marshaled.___m_Initialized_1 = static_cast<int32_t>(unmarshaled.get_m_Initialized_1());
}
IL2CPP_EXTERN_C void InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshal_pinvoke_back(const InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshaled_pinvoke& marshaled, InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC& unmarshaled)
{
uint64_t unmarshaled_m_DeviceId_temp_0 = 0;
unmarshaled_m_DeviceId_temp_0 = marshaled.___m_DeviceId_0;
unmarshaled.set_m_DeviceId_0(unmarshaled_m_DeviceId_temp_0);
bool unmarshaled_m_Initialized_temp_1 = false;
unmarshaled_m_Initialized_temp_1 = static_cast<bool>(marshaled.___m_Initialized_1);
unmarshaled.set_m_Initialized_1(unmarshaled_m_Initialized_temp_1);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.InputDevice
IL2CPP_EXTERN_C void InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshal_pinvoke_cleanup(InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.InputDevice
IL2CPP_EXTERN_C void InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshal_com(const InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC& unmarshaled, InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshaled_com& marshaled)
{
marshaled.___m_DeviceId_0 = unmarshaled.get_m_DeviceId_0();
marshaled.___m_Initialized_1 = static_cast<int32_t>(unmarshaled.get_m_Initialized_1());
}
IL2CPP_EXTERN_C void InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshal_com_back(const InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshaled_com& marshaled, InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC& unmarshaled)
{
uint64_t unmarshaled_m_DeviceId_temp_0 = 0;
unmarshaled_m_DeviceId_temp_0 = marshaled.___m_DeviceId_0;
unmarshaled.set_m_DeviceId_0(unmarshaled_m_DeviceId_temp_0);
bool unmarshaled_m_Initialized_temp_1 = false;
unmarshaled_m_Initialized_temp_1 = static_cast<bool>(marshaled.___m_Initialized_1);
unmarshaled.set_m_Initialized_1(unmarshaled_m_Initialized_temp_1);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.InputDevice
IL2CPP_EXTERN_C void InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshal_com_cleanup(InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.XR.InputDevice::.ctor(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevice__ctor_m534E7C5808B15C01665478F94683451DD22BA9E2 (InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * __this, uint64_t ___deviceId0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___deviceId0;
__this->set_m_DeviceId_0(L_0);
__this->set_m_Initialized_1((bool)1);
return;
}
}
IL2CPP_EXTERN_C void InputDevice__ctor_m534E7C5808B15C01665478F94683451DD22BA9E2_AdjustorThunk (RuntimeObject * __this, uint64_t ___deviceId0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * _thisAdjusted = reinterpret_cast<InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC *>(__this + _offset);
InputDevice__ctor_m534E7C5808B15C01665478F94683451DD22BA9E2(_thisAdjusted, ___deviceId0, method);
}
// System.UInt64 UnityEngine.XR.InputDevice::get_deviceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t InputDevice_get_deviceId_m5F0797FAF76FE3816D92F01005989F287E582357 (InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * __this, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
uint64_t G_B3_0 = 0;
{
bool L_0 = __this->get_m_Initialized_1();
if (L_0)
{
goto IL_000d;
}
}
{
G_B3_0 = ((uint64_t)((((int64_t)((int64_t)(-1))))));
goto IL_0013;
}
IL_000d:
{
uint64_t L_1 = __this->get_m_DeviceId_0();
G_B3_0 = L_1;
}
IL_0013:
{
V_0 = G_B3_0;
goto IL_0016;
}
IL_0016:
{
uint64_t L_2 = V_0;
return L_2;
}
}
IL2CPP_EXTERN_C uint64_t InputDevice_get_deviceId_m5F0797FAF76FE3816D92F01005989F287E582357_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * _thisAdjusted = reinterpret_cast<InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC *>(__this + _offset);
return InputDevice_get_deviceId_m5F0797FAF76FE3816D92F01005989F287E582357(_thisAdjusted, method);
}
// System.Boolean UnityEngine.XR.InputDevice::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_Equals_m741ED20972E238BC41A52D3AEB43A737E0FC5066 (InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InputDevice_Equals_m741ED20972E238BC41A52D3AEB43A737E0FC5066_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
RuntimeObject * L_0 = ___obj0;
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
V_1 = (bool)0;
goto IL_0024;
}
IL_0015:
{
RuntimeObject * L_2 = ___obj0;
bool L_3 = InputDevice_Equals_mDBBBBCC8B65821B8DDE004CAC76A45E53F54767C((InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC *)__this, ((*(InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC *)((InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC *)UnBox(L_2, InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
V_1 = L_3;
goto IL_0024;
}
IL_0024:
{
bool L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C bool InputDevice_Equals_m741ED20972E238BC41A52D3AEB43A737E0FC5066_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * _thisAdjusted = reinterpret_cast<InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC *>(__this + _offset);
return InputDevice_Equals_m741ED20972E238BC41A52D3AEB43A737E0FC5066(_thisAdjusted, ___obj0, method);
}
// System.Boolean UnityEngine.XR.InputDevice::Equals(UnityEngine.XR.InputDevice)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_Equals_mDBBBBCC8B65821B8DDE004CAC76A45E53F54767C (InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * __this, InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
{
uint64_t L_0 = InputDevice_get_deviceId_m5F0797FAF76FE3816D92F01005989F287E582357((InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC *)__this, /*hidden argument*/NULL);
uint64_t L_1 = InputDevice_get_deviceId_m5F0797FAF76FE3816D92F01005989F287E582357((InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC *)(&___other0), /*hidden argument*/NULL);
V_0 = (bool)((((int64_t)L_0) == ((int64_t)L_1))? 1 : 0);
goto IL_0013;
}
IL_0013:
{
bool L_2 = V_0;
return L_2;
}
}
IL2CPP_EXTERN_C bool InputDevice_Equals_mDBBBBCC8B65821B8DDE004CAC76A45E53F54767C_AdjustorThunk (RuntimeObject * __this, InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * _thisAdjusted = reinterpret_cast<InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC *>(__this + _offset);
return InputDevice_Equals_mDBBBBCC8B65821B8DDE004CAC76A45E53F54767C(_thisAdjusted, ___other0, method);
}
// System.Int32 UnityEngine.XR.InputDevice::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDevice_GetHashCode_mBAC2C81FBE7993722897EA64D22E1147A7C6A175 (InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * __this, const RuntimeMethod* method)
{
uint64_t V_0 = 0;
int32_t V_1 = 0;
{
uint64_t L_0 = InputDevice_get_deviceId_m5F0797FAF76FE3816D92F01005989F287E582357((InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = UInt64_GetHashCode_mCBB4031BF70D0CBD023B4D71F4FEA37BE2C749AD((uint64_t*)(&V_0), /*hidden argument*/NULL);
V_1 = L_1;
goto IL_0012;
}
IL_0012:
{
int32_t L_2 = V_1;
return L_2;
}
}
IL2CPP_EXTERN_C int32_t InputDevice_GetHashCode_mBAC2C81FBE7993722897EA64D22E1147A7C6A175_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC * _thisAdjusted = reinterpret_cast<InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC *>(__this + _offset);
return InputDevice_GetHashCode_mBAC2C81FBE7993722897EA64D22E1147A7C6A175(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.InputDevices
IL2CPP_EXTERN_C void InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshal_pinvoke(const InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF& unmarshaled, InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshaled_pinvoke& marshaled)
{
}
IL2CPP_EXTERN_C void InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshal_pinvoke_back(const InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshaled_pinvoke& marshaled, InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF& unmarshaled)
{
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.InputDevices
IL2CPP_EXTERN_C void InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshal_pinvoke_cleanup(InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.InputDevices
IL2CPP_EXTERN_C void InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshal_com(const InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF& unmarshaled, InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshaled_com& marshaled)
{
}
IL2CPP_EXTERN_C void InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshal_com_back(const InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshaled_com& marshaled, InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF& unmarshaled)
{
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.InputDevices
IL2CPP_EXTERN_C void InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshal_com_cleanup(InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.XR.InputDevices::InvokeConnectionEvent(System.UInt64,UnityEngine.XR.ConnectionChangeType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDevices_InvokeConnectionEvent_mF19958B27E9137E368A75B0D73FD1F78881DD821 (uint64_t ___deviceId0, uint32_t ___change1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InputDevices_InvokeConnectionEvent_mF19958B27E9137E368A75B0D73FD1F78881DD821_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
{
uint32_t L_0 = ___change1;
V_0 = L_0;
uint32_t L_1 = V_0;
switch (L_1)
{
case 0:
{
goto IL_0017;
}
case 1:
{
goto IL_0037;
}
case 2:
{
goto IL_0057;
}
}
}
{
goto IL_0077;
}
IL_0017:
{
Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * L_2 = ((InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_StaticFields*)il2cpp_codegen_static_fields_for(InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_il2cpp_TypeInfo_var))->get_deviceConnected_0();
V_1 = (bool)((!(((RuntimeObject*)(Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 *)L_2) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0035;
}
}
{
Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * L_4 = ((InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_StaticFields*)il2cpp_codegen_static_fields_for(InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_il2cpp_TypeInfo_var))->get_deviceConnected_0();
uint64_t L_5 = ___deviceId0;
InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC L_6;
memset((&L_6), 0, sizeof(L_6));
InputDevice__ctor_m534E7C5808B15C01665478F94683451DD22BA9E2((&L_6), L_5, /*hidden argument*/NULL);
NullCheck(L_4);
Action_1_Invoke_m76AAC7959D7259C4B9B7B271344C095C307FAC20(L_4, L_6, /*hidden argument*/Action_1_Invoke_m76AAC7959D7259C4B9B7B271344C095C307FAC20_RuntimeMethod_var);
}
IL_0035:
{
goto IL_0077;
}
IL_0037:
{
Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * L_7 = ((InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_StaticFields*)il2cpp_codegen_static_fields_for(InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_il2cpp_TypeInfo_var))->get_deviceDisconnected_1();
V_2 = (bool)((!(((RuntimeObject*)(Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 *)L_7) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_8 = V_2;
if (!L_8)
{
goto IL_0055;
}
}
{
Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * L_9 = ((InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_StaticFields*)il2cpp_codegen_static_fields_for(InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_il2cpp_TypeInfo_var))->get_deviceDisconnected_1();
uint64_t L_10 = ___deviceId0;
InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC L_11;
memset((&L_11), 0, sizeof(L_11));
InputDevice__ctor_m534E7C5808B15C01665478F94683451DD22BA9E2((&L_11), L_10, /*hidden argument*/NULL);
NullCheck(L_9);
Action_1_Invoke_m76AAC7959D7259C4B9B7B271344C095C307FAC20(L_9, L_11, /*hidden argument*/Action_1_Invoke_m76AAC7959D7259C4B9B7B271344C095C307FAC20_RuntimeMethod_var);
}
IL_0055:
{
goto IL_0077;
}
IL_0057:
{
Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * L_12 = ((InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_StaticFields*)il2cpp_codegen_static_fields_for(InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_il2cpp_TypeInfo_var))->get_deviceConfigChanged_2();
V_3 = (bool)((!(((RuntimeObject*)(Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 *)L_12) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_13 = V_3;
if (!L_13)
{
goto IL_0075;
}
}
{
Action_1_tFDF1CA1D2E011FE76F6E4CA4488C12A4A87752A7 * L_14 = ((InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_StaticFields*)il2cpp_codegen_static_fields_for(InputDevices_t8AA77AA14FDB1D857D8042E3A958492B7F3F4FBF_il2cpp_TypeInfo_var))->get_deviceConfigChanged_2();
uint64_t L_15 = ___deviceId0;
InputDevice_tF13BD967109BAB2CF49E1304EDFDA255067A2CDC L_16;
memset((&L_16), 0, sizeof(L_16));
InputDevice__ctor_m534E7C5808B15C01665478F94683451DD22BA9E2((&L_16), L_15, /*hidden argument*/NULL);
NullCheck(L_14);
Action_1_Invoke_m76AAC7959D7259C4B9B7B271344C095C307FAC20(L_14, L_16, /*hidden argument*/Action_1_Invoke_m76AAC7959D7259C4B9B7B271344C095C307FAC20_RuntimeMethod_var);
}
IL_0075:
{
goto IL_0077;
}
IL_0077:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.InputFeatureUsage
IL2CPP_EXTERN_C void InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshal_pinvoke(const InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C& unmarshaled, InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_pinvoke& marshaled)
{
marshaled.___m_Name_0 = il2cpp_codegen_marshal_string(unmarshaled.get_m_Name_0());
marshaled.___m_InternalType_1 = unmarshaled.get_m_InternalType_1();
}
IL2CPP_EXTERN_C void InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshal_pinvoke_back(const InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_pinvoke& marshaled, InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C& unmarshaled)
{
unmarshaled.set_m_Name_0(il2cpp_codegen_marshal_string_result(marshaled.___m_Name_0));
uint32_t unmarshaled_m_InternalType_temp_1 = 0;
unmarshaled_m_InternalType_temp_1 = marshaled.___m_InternalType_1;
unmarshaled.set_m_InternalType_1(unmarshaled_m_InternalType_temp_1);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.InputFeatureUsage
IL2CPP_EXTERN_C void InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshal_pinvoke_cleanup(InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___m_Name_0);
marshaled.___m_Name_0 = NULL;
}
// Conversion methods for marshalling of: UnityEngine.XR.InputFeatureUsage
IL2CPP_EXTERN_C void InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshal_com(const InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C& unmarshaled, InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_com& marshaled)
{
marshaled.___m_Name_0 = il2cpp_codegen_marshal_bstring(unmarshaled.get_m_Name_0());
marshaled.___m_InternalType_1 = unmarshaled.get_m_InternalType_1();
}
IL2CPP_EXTERN_C void InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshal_com_back(const InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_com& marshaled, InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C& unmarshaled)
{
unmarshaled.set_m_Name_0(il2cpp_codegen_marshal_bstring_result(marshaled.___m_Name_0));
uint32_t unmarshaled_m_InternalType_temp_1 = 0;
unmarshaled_m_InternalType_temp_1 = marshaled.___m_InternalType_1;
unmarshaled.set_m_InternalType_1(unmarshaled_m_InternalType_temp_1);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.InputFeatureUsage
IL2CPP_EXTERN_C void InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshal_com_cleanup(InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___m_Name_0);
marshaled.___m_Name_0 = NULL;
}
// System.String UnityEngine.XR.InputFeatureUsage::get_name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputFeatureUsage_get_name_m3415EE4B71906002970C499B404DDAB37687C273 (InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->get_m_Name_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C String_t* InputFeatureUsage_get_name_m3415EE4B71906002970C499B404DDAB37687C273_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * _thisAdjusted = reinterpret_cast<InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *>(__this + _offset);
return InputFeatureUsage_get_name_m3415EE4B71906002970C499B404DDAB37687C273(_thisAdjusted, method);
}
// UnityEngine.XR.InputFeatureType UnityEngine.XR.InputFeatureUsage::get_internalType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputFeatureUsage_get_internalType_mFBE2559CC6C05A4461C8A258CB459628FC76EE6C (InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_InternalType_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t InputFeatureUsage_get_internalType_mFBE2559CC6C05A4461C8A258CB459628FC76EE6C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * _thisAdjusted = reinterpret_cast<InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *>(__this + _offset);
return InputFeatureUsage_get_internalType_mFBE2559CC6C05A4461C8A258CB459628FC76EE6C(_thisAdjusted, method);
}
// System.Boolean UnityEngine.XR.InputFeatureUsage::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputFeatureUsage_Equals_m471A010DF80FA3BC39B4F89743E9D861852E3FFE (InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InputFeatureUsage_Equals_m471A010DF80FA3BC39B4F89743E9D861852E3FFE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
RuntimeObject * L_0 = ___obj0;
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
V_1 = (bool)0;
goto IL_0024;
}
IL_0015:
{
RuntimeObject * L_2 = ___obj0;
bool L_3 = InputFeatureUsage_Equals_mF22D83638881FE903ED9CC17763F57B986807742((InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *)__this, ((*(InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *)((InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *)UnBox(L_2, InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
V_1 = L_3;
goto IL_0024;
}
IL_0024:
{
bool L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C bool InputFeatureUsage_Equals_m471A010DF80FA3BC39B4F89743E9D861852E3FFE_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * _thisAdjusted = reinterpret_cast<InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *>(__this + _offset);
return InputFeatureUsage_Equals_m471A010DF80FA3BC39B4F89743E9D861852E3FFE(_thisAdjusted, ___obj0, method);
}
// System.Boolean UnityEngine.XR.InputFeatureUsage::Equals(UnityEngine.XR.InputFeatureUsage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputFeatureUsage_Equals_mF22D83638881FE903ED9CC17763F57B986807742 (InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * __this, InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
String_t* L_0 = InputFeatureUsage_get_name_m3415EE4B71906002970C499B404DDAB37687C273((InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *)__this, /*hidden argument*/NULL);
String_t* L_1 = InputFeatureUsage_get_name_m3415EE4B71906002970C499B404DDAB37687C273((InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *)(&___other0), /*hidden argument*/NULL);
bool L_2 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_0, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0026;
}
}
{
uint32_t L_3 = InputFeatureUsage_get_internalType_mFBE2559CC6C05A4461C8A258CB459628FC76EE6C((InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *)__this, /*hidden argument*/NULL);
uint32_t L_4 = InputFeatureUsage_get_internalType_mFBE2559CC6C05A4461C8A258CB459628FC76EE6C((InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *)(&___other0), /*hidden argument*/NULL);
G_B3_0 = ((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0);
goto IL_0027;
}
IL_0026:
{
G_B3_0 = 0;
}
IL_0027:
{
V_0 = (bool)G_B3_0;
goto IL_002a;
}
IL_002a:
{
bool L_5 = V_0;
return L_5;
}
}
IL2CPP_EXTERN_C bool InputFeatureUsage_Equals_mF22D83638881FE903ED9CC17763F57B986807742_AdjustorThunk (RuntimeObject * __this, InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * _thisAdjusted = reinterpret_cast<InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *>(__this + _offset);
return InputFeatureUsage_Equals_mF22D83638881FE903ED9CC17763F57B986807742(_thisAdjusted, ___other0, method);
}
// System.Int32 UnityEngine.XR.InputFeatureUsage::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputFeatureUsage_GetHashCode_m083565A56980BD5DF656314275D525355D913F69 (InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
int32_t V_1 = 0;
{
String_t* L_0 = InputFeatureUsage_get_name_m3415EE4B71906002970C499B404DDAB37687C273((InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *)__this, /*hidden argument*/NULL);
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
uint32_t L_2 = InputFeatureUsage_get_internalType_mFBE2559CC6C05A4461C8A258CB459628FC76EE6C((InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *)__this, /*hidden argument*/NULL);
V_0 = L_2;
int32_t L_3 = UInt32_GetHashCode_m791E3E038DAA8DC313758009B1C532CD91194B0D((uint32_t*)(&V_0), /*hidden argument*/NULL);
V_1 = ((int32_t)((int32_t)L_1^(int32_t)((int32_t)((int32_t)L_3<<(int32_t)1))));
goto IL_0026;
}
IL_0026:
{
int32_t L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C int32_t InputFeatureUsage_GetHashCode_m083565A56980BD5DF656314275D525355D913F69_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C * _thisAdjusted = reinterpret_cast<InputFeatureUsage_t37196CE3245923015BC883DABA534863D72F7B0C *>(__this + _offset);
return InputFeatureUsage_GetHashCode_m083565A56980BD5DF656314275D525355D913F69(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.InputTracking::InvokeTrackingEvent(UnityEngine.XR.InputTracking_TrackingStateEventType,UnityEngine.XR.XRNode,System.Int64,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputTracking_InvokeTrackingEvent_mDB5808D84A18FFE3EF4F4707F0291768B59CC111 (int32_t ___eventType0, int32_t ___nodeType1, int64_t ___uniqueID2, bool ___tracked3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InputTracking_InvokeTrackingEvent_mDB5808D84A18FFE3EF4F4707F0291768B59CC111_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * V_0 = NULL;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
bool V_3 = false;
{
V_0 = (Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 *)NULL;
il2cpp_codegen_initobj((&V_1), sizeof(XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A ));
int64_t L_0 = ___uniqueID2;
XRNodeState_set_uniqueID_m0A71A6EE7B7C516C9DEAE99BEECE66B21463F2E3((XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *)(&V_1), L_0, /*hidden argument*/NULL);
int32_t L_1 = ___nodeType1;
XRNodeState_set_nodeType_m0C4B5A3021F19FCA3B79DC704D0F4E334EB7E6CE((XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *)(&V_1), L_1, /*hidden argument*/NULL);
bool L_2 = ___tracked3;
XRNodeState_set_tracked_mC82DD9C7B6F061C452A0D89DE1A018CF68E581E2((XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *)(&V_1), L_2, /*hidden argument*/NULL);
int32_t L_3 = ___eventType0;
V_2 = L_3;
int32_t L_4 = V_2;
switch (L_4)
{
case 0:
{
goto IL_0050;
}
case 1:
{
goto IL_0058;
}
case 2:
{
goto IL_0040;
}
case 3:
{
goto IL_0048;
}
}
}
{
goto IL_0060;
}
IL_0040:
{
IL2CPP_RUNTIME_CLASS_INIT(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var);
Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * L_5 = ((InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields*)il2cpp_codegen_static_fields_for(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var))->get_trackingAcquired_0();
V_0 = L_5;
goto IL_0076;
}
IL_0048:
{
IL2CPP_RUNTIME_CLASS_INIT(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var);
Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * L_6 = ((InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields*)il2cpp_codegen_static_fields_for(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var))->get_trackingLost_1();
V_0 = L_6;
goto IL_0076;
}
IL_0050:
{
IL2CPP_RUNTIME_CLASS_INIT(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var);
Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * L_7 = ((InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields*)il2cpp_codegen_static_fields_for(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var))->get_nodeAdded_2();
V_0 = L_7;
goto IL_0076;
}
IL_0058:
{
IL2CPP_RUNTIME_CLASS_INIT(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var);
Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * L_8 = ((InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields*)il2cpp_codegen_static_fields_for(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var))->get_nodeRemoved_3();
V_0 = L_8;
goto IL_0076;
}
IL_0060:
{
int32_t L_9 = ___eventType0;
int32_t L_10 = L_9;
RuntimeObject * L_11 = Box(TrackingStateEventType_tD5ADDFEA62593966E5D258C959431DB50354B9C9_il2cpp_TypeInfo_var, &L_10);
String_t* L_12 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteralC1C9DAD500E0CECC42C18D4BE98235F5A0F88D78, L_11, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, InputTracking_InvokeTrackingEvent_mDB5808D84A18FFE3EF4F4707F0291768B59CC111_RuntimeMethod_var);
}
IL_0076:
{
Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * L_14 = V_0;
V_3 = (bool)((!(((RuntimeObject*)(Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 *)L_14) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_15 = V_3;
if (!L_15)
{
goto IL_0088;
}
}
{
Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 * L_16 = V_0;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A L_17 = V_1;
NullCheck(L_16);
Action_1_Invoke_mADC0DCCED2D4577B141EA288C2B3C66FFE15D489(L_16, L_17, /*hidden argument*/Action_1_Invoke_mADC0DCCED2D4577B141EA288C2B3C66FFE15D489_RuntimeMethod_var);
}
IL_0088:
{
return;
}
}
// System.Void UnityEngine.XR.InputTracking::GetNodeStates(System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputTracking_GetNodeStates_m1D99635AA169927E5C00399B44D798F08647823B (List_1_tDECBF737A96DF978685F6386C44B9284190E43C7 * ___nodeStates0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InputTracking_GetNodeStates_m1D99635AA169927E5C00399B44D798F08647823B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
List_1_tDECBF737A96DF978685F6386C44B9284190E43C7 * L_0 = ___nodeStates0;
V_0 = (bool)((((RuntimeObject*)(List_1_tDECBF737A96DF978685F6386C44B9284190E43C7 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral0FB01FF34DC0EFBBA003E466195204CD05E53B40, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, InputTracking_GetNodeStates_m1D99635AA169927E5C00399B44D798F08647823B_RuntimeMethod_var);
}
IL_0014:
{
List_1_tDECBF737A96DF978685F6386C44B9284190E43C7 * L_3 = ___nodeStates0;
NullCheck(L_3);
List_1_Clear_mC55E2F641D17BC3D08E6A03E16814B46518C257A(L_3, /*hidden argument*/List_1_Clear_mC55E2F641D17BC3D08E6A03E16814B46518C257A_RuntimeMethod_var);
List_1_tDECBF737A96DF978685F6386C44B9284190E43C7 * L_4 = ___nodeStates0;
IL2CPP_RUNTIME_CLASS_INIT(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var);
InputTracking_GetNodeStates_Internal_mB064ACE5931EE4484D85E843ABB4FAF48095EB5A(L_4, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.XR.InputTracking::GetNodeStates_Internal(System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputTracking_GetNodeStates_Internal_mB064ACE5931EE4484D85E843ABB4FAF48095EB5A (List_1_tDECBF737A96DF978685F6386C44B9284190E43C7 * ___nodeStates0, const RuntimeMethod* method)
{
typedef void (*InputTracking_GetNodeStates_Internal_mB064ACE5931EE4484D85E843ABB4FAF48095EB5A_ftn) (List_1_tDECBF737A96DF978685F6386C44B9284190E43C7 *);
static InputTracking_GetNodeStates_Internal_mB064ACE5931EE4484D85E843ABB4FAF48095EB5A_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (InputTracking_GetNodeStates_Internal_mB064ACE5931EE4484D85E843ABB4FAF48095EB5A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.XR.InputTracking::GetNodeStates_Internal(System.Collections.Generic.List`1<UnityEngine.XR.XRNodeState>)");
_il2cpp_icall_func(___nodeStates0);
}
// System.Void UnityEngine.XR.InputTracking::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputTracking__cctor_mB8272EBDEAE55941C2F990138EF052BEC85FBF13 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InputTracking__cctor_mB8272EBDEAE55941C2F990138EF052BEC85FBF13_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields*)il2cpp_codegen_static_fields_for(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var))->set_trackingAcquired_0((Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 *)NULL);
((InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields*)il2cpp_codegen_static_fields_for(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var))->set_trackingLost_1((Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 *)NULL);
((InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields*)il2cpp_codegen_static_fields_for(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var))->set_nodeAdded_2((Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 *)NULL);
((InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_StaticFields*)il2cpp_codegen_static_fields_for(InputTracking_t96AA6E2EC9B998FF199918D95164D23DA6F2DFE8_il2cpp_TypeInfo_var))->set_nodeRemoved_3((Action_1_t1C047EE47E5C76610625C8CCD8BF133FC775BED8 *)NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.MeshGenerationResult
IL2CPP_EXTERN_C void MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshal_pinvoke(const MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A& unmarshaled, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshaled_pinvoke& marshaled)
{
Exception_t* ___U3CMeshU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<Mesh>k__BackingField' of type 'MeshGenerationResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CMeshU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshal_pinvoke_back(const MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshaled_pinvoke& marshaled, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A& unmarshaled)
{
Exception_t* ___U3CMeshU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<Mesh>k__BackingField' of type 'MeshGenerationResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CMeshU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.MeshGenerationResult
IL2CPP_EXTERN_C void MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshal_pinvoke_cleanup(MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.MeshGenerationResult
IL2CPP_EXTERN_C void MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshal_com(const MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A& unmarshaled, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshaled_com& marshaled)
{
Exception_t* ___U3CMeshU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<Mesh>k__BackingField' of type 'MeshGenerationResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CMeshU3Ek__BackingField_1Exception, NULL);
}
IL2CPP_EXTERN_C void MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshal_com_back(const MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshaled_com& marshaled, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A& unmarshaled)
{
Exception_t* ___U3CMeshU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<Mesh>k__BackingField' of type 'MeshGenerationResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CMeshU3Ek__BackingField_1Exception, NULL);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.MeshGenerationResult
IL2CPP_EXTERN_C void MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshal_com_cleanup(MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_marshaled_com& marshaled)
{
}
// UnityEngine.XR.MeshId UnityEngine.XR.MeshGenerationResult::get_MeshId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A MeshGenerationResult_get_MeshId_m1113338E0F307CF16B4B4BE21666294DD4D256E1 (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method)
{
{
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_0 = __this->get_U3CMeshIdU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A MeshGenerationResult_get_MeshId_m1113338E0F307CF16B4B4BE21666294DD4D256E1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * _thisAdjusted = reinterpret_cast<MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *>(__this + _offset);
return MeshGenerationResult_get_MeshId_m1113338E0F307CF16B4B4BE21666294DD4D256E1_inline(_thisAdjusted, method);
}
// UnityEngine.Mesh UnityEngine.XR.MeshGenerationResult::get_Mesh()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * MeshGenerationResult_get_Mesh_m0EBB5B1AD63C64D39486EFFBE21166DC6C3E7575 (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method)
{
{
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * L_0 = __this->get_U3CMeshU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * MeshGenerationResult_get_Mesh_m0EBB5B1AD63C64D39486EFFBE21166DC6C3E7575_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * _thisAdjusted = reinterpret_cast<MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *>(__this + _offset);
return MeshGenerationResult_get_Mesh_m0EBB5B1AD63C64D39486EFFBE21166DC6C3E7575_inline(_thisAdjusted, method);
}
// UnityEngine.MeshCollider UnityEngine.XR.MeshGenerationResult::get_MeshCollider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * MeshGenerationResult_get_MeshCollider_m6ED813F4C16388132DDCD6A65240DBF3C165E524 (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method)
{
{
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * L_0 = __this->get_U3CMeshColliderU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * MeshGenerationResult_get_MeshCollider_m6ED813F4C16388132DDCD6A65240DBF3C165E524_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * _thisAdjusted = reinterpret_cast<MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *>(__this + _offset);
return MeshGenerationResult_get_MeshCollider_m6ED813F4C16388132DDCD6A65240DBF3C165E524_inline(_thisAdjusted, method);
}
// UnityEngine.XR.MeshGenerationStatus UnityEngine.XR.MeshGenerationResult::get_Status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MeshGenerationResult_get_Status_mB2A2937F3CEA5264B977F6FAAD054CE353CDC248 (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CStatusU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t MeshGenerationResult_get_Status_mB2A2937F3CEA5264B977F6FAAD054CE353CDC248_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * _thisAdjusted = reinterpret_cast<MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *>(__this + _offset);
return MeshGenerationResult_get_Status_mB2A2937F3CEA5264B977F6FAAD054CE353CDC248_inline(_thisAdjusted, method);
}
// UnityEngine.XR.MeshVertexAttributes UnityEngine.XR.MeshGenerationResult::get_Attributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MeshGenerationResult_get_Attributes_m2130FD5614F6772B24E31DD7127EB66066158A90 (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CAttributesU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t MeshGenerationResult_get_Attributes_m2130FD5614F6772B24E31DD7127EB66066158A90_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * _thisAdjusted = reinterpret_cast<MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *>(__this + _offset);
return MeshGenerationResult_get_Attributes_m2130FD5614F6772B24E31DD7127EB66066158A90_inline(_thisAdjusted, method);
}
// System.Boolean UnityEngine.XR.MeshGenerationResult::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshGenerationResult_Equals_m0F47888DAC3E658A94AD392796FBBE990CA8138E (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MeshGenerationResult_Equals_m0F47888DAC3E658A94AD392796FBBE990CA8138E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
RuntimeObject * L_0 = ___obj0;
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
V_1 = (bool)0;
goto IL_0024;
}
IL_0015:
{
RuntimeObject * L_2 = ___obj0;
bool L_3 = MeshGenerationResult_Equals_m4E7C54861B2C6D79D1FD39E4C4A2F37A27C91194((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)__this, ((*(MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)UnBox(L_2, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
V_1 = L_3;
goto IL_0024;
}
IL_0024:
{
bool L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C bool MeshGenerationResult_Equals_m0F47888DAC3E658A94AD392796FBBE990CA8138E_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * _thisAdjusted = reinterpret_cast<MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *>(__this + _offset);
return MeshGenerationResult_Equals_m0F47888DAC3E658A94AD392796FBBE990CA8138E(_thisAdjusted, ___obj0, method);
}
// System.Boolean UnityEngine.XR.MeshGenerationResult::Equals(UnityEngine.XR.MeshGenerationResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshGenerationResult_Equals_m4E7C54861B2C6D79D1FD39E4C4A2F37A27C91194 (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MeshGenerationResult_Equals_m4E7C54861B2C6D79D1FD39E4C4A2F37A27C91194_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
int32_t V_2 = 0;
bool V_3 = false;
int32_t G_B6_0 = 0;
{
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_0 = MeshGenerationResult_get_MeshId_m1113338E0F307CF16B4B4BE21666294DD4D256E1_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)__this, /*hidden argument*/NULL);
V_0 = L_0;
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_1 = MeshGenerationResult_get_MeshId_m1113338E0F307CF16B4B4BE21666294DD4D256E1_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)(&___other0), /*hidden argument*/NULL);
bool L_2 = MeshId_Equals_mA59C2EE90132C307BBFC93663039D1807FCB156F((MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *)(&V_0), L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0084;
}
}
{
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * L_3 = MeshGenerationResult_get_Mesh_m0EBB5B1AD63C64D39486EFFBE21166DC6C3E7575_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)__this, /*hidden argument*/NULL);
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * L_4 = MeshGenerationResult_get_Mesh_m0EBB5B1AD63C64D39486EFFBE21166DC6C3E7575_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)(&___other0), /*hidden argument*/NULL);
NullCheck(L_3);
bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_3, L_4);
if (!L_5)
{
goto IL_0084;
}
}
{
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * L_6 = MeshGenerationResult_get_MeshCollider_m6ED813F4C16388132DDCD6A65240DBF3C165E524_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)__this, /*hidden argument*/NULL);
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * L_7 = MeshGenerationResult_get_MeshCollider_m6ED813F4C16388132DDCD6A65240DBF3C165E524_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)(&___other0), /*hidden argument*/NULL);
NullCheck(L_6);
bool L_8 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_6, L_7);
if (!L_8)
{
goto IL_0084;
}
}
{
int32_t L_9 = MeshGenerationResult_get_Status_mB2A2937F3CEA5264B977F6FAAD054CE353CDC248_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)__this, /*hidden argument*/NULL);
V_1 = L_9;
int32_t L_10 = MeshGenerationResult_get_Status_mB2A2937F3CEA5264B977F6FAAD054CE353CDC248_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)(&___other0), /*hidden argument*/NULL);
int32_t L_11 = L_10;
RuntimeObject * L_12 = Box(MeshGenerationStatus_t9EF07FCDC3FA6CC1951DDDED08F361AC02486D73_il2cpp_TypeInfo_var, &L_11);
RuntimeObject * L_13 = Box(MeshGenerationStatus_t9EF07FCDC3FA6CC1951DDDED08F361AC02486D73_il2cpp_TypeInfo_var, (&V_1));
NullCheck(L_13);
bool L_14 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_13, L_12);
V_1 = *(int32_t*)UnBox(L_13);
if (!L_14)
{
goto IL_0084;
}
}
{
int32_t L_15 = MeshGenerationResult_get_Attributes_m2130FD5614F6772B24E31DD7127EB66066158A90_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)__this, /*hidden argument*/NULL);
V_2 = L_15;
int32_t L_16 = MeshGenerationResult_get_Attributes_m2130FD5614F6772B24E31DD7127EB66066158A90_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)(&___other0), /*hidden argument*/NULL);
int32_t L_17 = L_16;
RuntimeObject * L_18 = Box(MeshVertexAttributes_t108D1D0898F30028DA0D36251BCB889FF471FF58_il2cpp_TypeInfo_var, &L_17);
RuntimeObject * L_19 = Box(MeshVertexAttributes_t108D1D0898F30028DA0D36251BCB889FF471FF58_il2cpp_TypeInfo_var, (&V_2));
NullCheck(L_19);
bool L_20 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_19, L_18);
V_2 = *(int32_t*)UnBox(L_19);
G_B6_0 = ((int32_t)(L_20));
goto IL_0085;
}
IL_0084:
{
G_B6_0 = 0;
}
IL_0085:
{
V_3 = (bool)G_B6_0;
goto IL_0088;
}
IL_0088:
{
bool L_21 = V_3;
return L_21;
}
}
IL2CPP_EXTERN_C bool MeshGenerationResult_Equals_m4E7C54861B2C6D79D1FD39E4C4A2F37A27C91194_AdjustorThunk (RuntimeObject * __this, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * _thisAdjusted = reinterpret_cast<MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *>(__this + _offset);
return MeshGenerationResult_Equals_m4E7C54861B2C6D79D1FD39E4C4A2F37A27C91194(_thisAdjusted, ___other0, method);
}
// System.Int32 UnityEngine.XR.MeshGenerationResult::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MeshGenerationResult_GetHashCode_m64BDB58FABE08353FF4AE98EF350B938D93CD8F0 (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method)
{
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_0 = MeshGenerationResult_get_MeshId_m1113338E0F307CF16B4B4BE21666294DD4D256E1_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = MeshId_GetHashCode_m96FC65CD0D1CA2FEEAB91581073E173E9EC51626((MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *)(&V_0), /*hidden argument*/NULL);
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * L_2 = MeshGenerationResult_get_Mesh_m0EBB5B1AD63C64D39486EFFBE21166DC6C3E7575_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)__this, /*hidden argument*/NULL);
NullCheck(L_2);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_2);
int32_t L_4 = HashCodeHelper_Combine_m46115CFBF4C6C04B03559C1E6ABCE8D515F34E5C(L_1, L_3, /*hidden argument*/NULL);
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * L_5 = MeshGenerationResult_get_MeshCollider_m6ED813F4C16388132DDCD6A65240DBF3C165E524_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)__this, /*hidden argument*/NULL);
NullCheck(L_5);
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_5);
int32_t L_7 = HashCodeHelper_Combine_m46115CFBF4C6C04B03559C1E6ABCE8D515F34E5C(L_4, L_6, /*hidden argument*/NULL);
int32_t L_8 = MeshGenerationResult_get_Status_mB2A2937F3CEA5264B977F6FAAD054CE353CDC248_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)__this, /*hidden argument*/NULL);
V_1 = L_8;
int32_t L_9 = Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A((int32_t*)(&V_1), /*hidden argument*/NULL);
int32_t L_10 = HashCodeHelper_Combine_m46115CFBF4C6C04B03559C1E6ABCE8D515F34E5C(L_7, L_9, /*hidden argument*/NULL);
int32_t L_11 = MeshGenerationResult_get_Attributes_m2130FD5614F6772B24E31DD7127EB66066158A90_inline((MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *)__this, /*hidden argument*/NULL);
V_2 = L_11;
int32_t L_12 = Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A((int32_t*)(&V_2), /*hidden argument*/NULL);
int32_t L_13 = HashCodeHelper_Combine_m46115CFBF4C6C04B03559C1E6ABCE8D515F34E5C(L_10, L_12, /*hidden argument*/NULL);
V_3 = L_13;
goto IL_006a;
}
IL_006a:
{
int32_t L_14 = V_3;
return L_14;
}
}
IL2CPP_EXTERN_C int32_t MeshGenerationResult_GetHashCode_m64BDB58FABE08353FF4AE98EF350B938D93CD8F0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * _thisAdjusted = reinterpret_cast<MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A *>(__this + _offset);
return MeshGenerationResult_GetHashCode_m64BDB58FABE08353FF4AE98EF350B938D93CD8F0(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String UnityEngine.XR.MeshId::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MeshId_ToString_m765CD93EFB3D48FC601CC1350A3DBDDD0B55F1A0 (MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MeshId_ToString_m765CD93EFB3D48FC601CC1350A3DBDDD0B55F1A0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
uint64_t* L_0 = __this->get_address_of_m_SubId1_1();
String_t* L_1 = UInt64_ToString_m46B46DBB5F74DCDC6082A8AC8C695E2295925E71((uint64_t*)L_0, _stringLiteral7C920AC9C27322B466EC79E3F70C59D0EB2E27E3, /*hidden argument*/NULL);
uint64_t* L_2 = __this->get_address_of_m_SubId2_2();
String_t* L_3 = UInt64_ToString_m46B46DBB5F74DCDC6082A8AC8C695E2295925E71((uint64_t*)L_2, _stringLiteral7C920AC9C27322B466EC79E3F70C59D0EB2E27E3, /*hidden argument*/NULL);
String_t* L_4 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteral9C4E8CB62B5C9AA47AEDDAC7C3F9DA543AECB0F9, L_1, L_3, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_002e;
}
IL_002e:
{
String_t* L_5 = V_0;
return L_5;
}
}
IL2CPP_EXTERN_C String_t* MeshId_ToString_m765CD93EFB3D48FC601CC1350A3DBDDD0B55F1A0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * _thisAdjusted = reinterpret_cast<MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *>(__this + _offset);
return MeshId_ToString_m765CD93EFB3D48FC601CC1350A3DBDDD0B55F1A0(_thisAdjusted, method);
}
// System.Int32 UnityEngine.XR.MeshId::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MeshId_GetHashCode_m96FC65CD0D1CA2FEEAB91581073E173E9EC51626 (MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
uint64_t* L_0 = __this->get_address_of_m_SubId1_1();
int32_t L_1 = UInt64_GetHashCode_mCBB4031BF70D0CBD023B4D71F4FEA37BE2C749AD((uint64_t*)L_0, /*hidden argument*/NULL);
uint64_t* L_2 = __this->get_address_of_m_SubId2_2();
int32_t L_3 = UInt64_GetHashCode_mCBB4031BF70D0CBD023B4D71F4FEA37BE2C749AD((uint64_t*)L_2, /*hidden argument*/NULL);
V_0 = ((int32_t)((int32_t)L_1^(int32_t)L_3));
goto IL_001b;
}
IL_001b:
{
int32_t L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C int32_t MeshId_GetHashCode_m96FC65CD0D1CA2FEEAB91581073E173E9EC51626_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * _thisAdjusted = reinterpret_cast<MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *>(__this + _offset);
return MeshId_GetHashCode_m96FC65CD0D1CA2FEEAB91581073E173E9EC51626(_thisAdjusted, method);
}
// System.Boolean UnityEngine.XR.MeshId::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshId_Equals_m3EB8E8B8FDA84194D7684B76C02686B839CBE8AA (MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MeshId_Equals_m3EB8E8B8FDA84194D7684B76C02686B839CBE8AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
{
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_il2cpp_TypeInfo_var)))
{
goto IL_0017;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2 = MeshId_Equals_mA59C2EE90132C307BBFC93663039D1807FCB156F((MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *)__this, ((*(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *)((MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *)UnBox(L_1, MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
G_B3_0 = ((int32_t)(L_2));
goto IL_0018;
}
IL_0017:
{
G_B3_0 = 0;
}
IL_0018:
{
V_0 = (bool)G_B3_0;
goto IL_001b;
}
IL_001b:
{
bool L_3 = V_0;
return L_3;
}
}
IL2CPP_EXTERN_C bool MeshId_Equals_m3EB8E8B8FDA84194D7684B76C02686B839CBE8AA_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * _thisAdjusted = reinterpret_cast<MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *>(__this + _offset);
return MeshId_Equals_m3EB8E8B8FDA84194D7684B76C02686B839CBE8AA(_thisAdjusted, ___obj0, method);
}
// System.Boolean UnityEngine.XR.MeshId::Equals(UnityEngine.XR.MeshId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshId_Equals_mA59C2EE90132C307BBFC93663039D1807FCB156F (MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * __this, MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
uint64_t L_0 = __this->get_m_SubId1_1();
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_1 = ___other0;
uint64_t L_2 = L_1.get_m_SubId1_1();
if ((!(((uint64_t)L_0) == ((uint64_t)L_2))))
{
goto IL_001f;
}
}
{
uint64_t L_3 = __this->get_m_SubId2_2();
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_4 = ___other0;
uint64_t L_5 = L_4.get_m_SubId2_2();
G_B3_0 = ((((int64_t)L_3) == ((int64_t)L_5))? 1 : 0);
goto IL_0020;
}
IL_001f:
{
G_B3_0 = 0;
}
IL_0020:
{
V_0 = (bool)G_B3_0;
goto IL_0023;
}
IL_0023:
{
bool L_6 = V_0;
return L_6;
}
}
IL2CPP_EXTERN_C bool MeshId_Equals_mA59C2EE90132C307BBFC93663039D1807FCB156F_AdjustorThunk (RuntimeObject * __this, MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * _thisAdjusted = reinterpret_cast<MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *>(__this + _offset);
return MeshId_Equals_mA59C2EE90132C307BBFC93663039D1807FCB156F(_thisAdjusted, ___other0, method);
}
// System.Void UnityEngine.XR.MeshId::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MeshId__cctor_m06C4145F5DEB610C1F043FB28127628101C87F9D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MeshId__cctor_m06C4145F5DEB610C1F043FB28127628101C87F9D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_initobj((((MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_StaticFields*)il2cpp_codegen_static_fields_for(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A_il2cpp_TypeInfo_var))->get_address_of_s_InvalidId_0()), sizeof(MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.XR.MeshId UnityEngine.XR.MeshInfo::get_MeshId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A MeshInfo_get_MeshId_mCADC4A52D7A1229FC4FCC930D320201BE4DFA7C7 (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, const RuntimeMethod* method)
{
{
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_0 = __this->get_U3CMeshIdU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A MeshInfo_get_MeshId_mCADC4A52D7A1229FC4FCC930D320201BE4DFA7C7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * _thisAdjusted = reinterpret_cast<MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *>(__this + _offset);
return MeshInfo_get_MeshId_mCADC4A52D7A1229FC4FCC930D320201BE4DFA7C7_inline(_thisAdjusted, method);
}
// UnityEngine.XR.MeshChangeState UnityEngine.XR.MeshInfo::get_ChangeState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MeshInfo_get_ChangeState_m841D373DCDEDA4C40AEF7D40A56062C2048FD730 (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CChangeStateU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t MeshInfo_get_ChangeState_m841D373DCDEDA4C40AEF7D40A56062C2048FD730_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * _thisAdjusted = reinterpret_cast<MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *>(__this + _offset);
return MeshInfo_get_ChangeState_m841D373DCDEDA4C40AEF7D40A56062C2048FD730_inline(_thisAdjusted, method);
}
// System.Int32 UnityEngine.XR.MeshInfo::get_PriorityHint()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MeshInfo_get_PriorityHint_m5BD302D8B09FFCBE1C1738A7DB1F1A92ED74429F (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CPriorityHintU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C int32_t MeshInfo_get_PriorityHint_m5BD302D8B09FFCBE1C1738A7DB1F1A92ED74429F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * _thisAdjusted = reinterpret_cast<MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *>(__this + _offset);
return MeshInfo_get_PriorityHint_m5BD302D8B09FFCBE1C1738A7DB1F1A92ED74429F_inline(_thisAdjusted, method);
}
// System.Void UnityEngine.XR.MeshInfo::set_PriorityHint(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MeshInfo_set_PriorityHint_m1FFF79BA0BCB6070474EB829A357F6259D97CE36 (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CPriorityHintU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void MeshInfo_set_PriorityHint_m1FFF79BA0BCB6070474EB829A357F6259D97CE36_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * _thisAdjusted = reinterpret_cast<MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *>(__this + _offset);
MeshInfo_set_PriorityHint_m1FFF79BA0BCB6070474EB829A357F6259D97CE36_inline(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.MeshInfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshInfo_Equals_m8D4CC363A05923F765E32A26F1E595D2B80B5C0D (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MeshInfo_Equals_m8D4CC363A05923F765E32A26F1E595D2B80B5C0D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
RuntimeObject * L_0 = ___obj0;
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
V_1 = (bool)0;
goto IL_0024;
}
IL_0015:
{
RuntimeObject * L_2 = ___obj0;
bool L_3 = MeshInfo_Equals_m72DBC2F9D39A5B19A80C01E74CFD3E9013073414((MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)__this, ((*(MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)((MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)UnBox(L_2, MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
V_1 = L_3;
goto IL_0024;
}
IL_0024:
{
bool L_4 = V_1;
return L_4;
}
}
IL2CPP_EXTERN_C bool MeshInfo_Equals_m8D4CC363A05923F765E32A26F1E595D2B80B5C0D_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * _thisAdjusted = reinterpret_cast<MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *>(__this + _offset);
return MeshInfo_Equals_m8D4CC363A05923F765E32A26F1E595D2B80B5C0D(_thisAdjusted, ___obj0, method);
}
// System.Boolean UnityEngine.XR.MeshInfo::Equals(UnityEngine.XR.MeshInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshInfo_Equals_m72DBC2F9D39A5B19A80C01E74CFD3E9013073414 (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MeshInfo_Equals_m72DBC2F9D39A5B19A80C01E74CFD3E9013073414_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
int32_t V_2 = 0;
bool V_3 = false;
int32_t G_B4_0 = 0;
{
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_0 = MeshInfo_get_MeshId_mCADC4A52D7A1229FC4FCC930D320201BE4DFA7C7_inline((MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_1 = MeshInfo_get_MeshId_mCADC4A52D7A1229FC4FCC930D320201BE4DFA7C7_inline((MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)(&___other0), /*hidden argument*/NULL);
bool L_2 = MeshId_Equals_mA59C2EE90132C307BBFC93663039D1807FCB156F((MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *)(&V_0), L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0051;
}
}
{
int32_t L_3 = MeshInfo_get_ChangeState_m841D373DCDEDA4C40AEF7D40A56062C2048FD730_inline((MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)__this, /*hidden argument*/NULL);
V_1 = L_3;
int32_t L_4 = MeshInfo_get_ChangeState_m841D373DCDEDA4C40AEF7D40A56062C2048FD730_inline((MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)(&___other0), /*hidden argument*/NULL);
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(MeshChangeState_t42D58EE953790EC6E1609C4BEB5FC75C680D84E0_il2cpp_TypeInfo_var, &L_5);
RuntimeObject * L_7 = Box(MeshChangeState_t42D58EE953790EC6E1609C4BEB5FC75C680D84E0_il2cpp_TypeInfo_var, (&V_1));
NullCheck(L_7);
bool L_8 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_7, L_6);
V_1 = *(int32_t*)UnBox(L_7);
if (!L_8)
{
goto IL_0051;
}
}
{
int32_t L_9 = MeshInfo_get_PriorityHint_m5BD302D8B09FFCBE1C1738A7DB1F1A92ED74429F_inline((MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)__this, /*hidden argument*/NULL);
V_2 = L_9;
int32_t L_10 = MeshInfo_get_PriorityHint_m5BD302D8B09FFCBE1C1738A7DB1F1A92ED74429F_inline((MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)(&___other0), /*hidden argument*/NULL);
bool L_11 = Int32_Equals_mC8C45B8899F291D55A6152C8FEDB3CFFF181170B((int32_t*)(&V_2), L_10, /*hidden argument*/NULL);
G_B4_0 = ((int32_t)(L_11));
goto IL_0052;
}
IL_0051:
{
G_B4_0 = 0;
}
IL_0052:
{
V_3 = (bool)G_B4_0;
goto IL_0055;
}
IL_0055:
{
bool L_12 = V_3;
return L_12;
}
}
IL2CPP_EXTERN_C bool MeshInfo_Equals_m72DBC2F9D39A5B19A80C01E74CFD3E9013073414_AdjustorThunk (RuntimeObject * __this, MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * _thisAdjusted = reinterpret_cast<MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *>(__this + _offset);
return MeshInfo_Equals_m72DBC2F9D39A5B19A80C01E74CFD3E9013073414(_thisAdjusted, ___other0, method);
}
// System.Int32 UnityEngine.XR.MeshInfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MeshInfo_GetHashCode_mAA2DB4C2D99752A01FCBF238B89CC7EAD0B2586A (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, const RuntimeMethod* method)
{
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
int32_t V_2 = 0;
{
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_0 = MeshInfo_get_MeshId_mCADC4A52D7A1229FC4FCC930D320201BE4DFA7C7_inline((MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = MeshId_GetHashCode_m96FC65CD0D1CA2FEEAB91581073E173E9EC51626((MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *)(&V_0), /*hidden argument*/NULL);
int32_t L_2 = MeshInfo_get_ChangeState_m841D373DCDEDA4C40AEF7D40A56062C2048FD730_inline((MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)__this, /*hidden argument*/NULL);
V_1 = L_2;
int32_t L_3 = Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A((int32_t*)(&V_1), /*hidden argument*/NULL);
int32_t L_4 = HashCodeHelper_Combine_m46115CFBF4C6C04B03559C1E6ABCE8D515F34E5C(L_1, L_3, /*hidden argument*/NULL);
int32_t L_5 = MeshInfo_get_PriorityHint_m5BD302D8B09FFCBE1C1738A7DB1F1A92ED74429F_inline((MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *)__this, /*hidden argument*/NULL);
int32_t L_6 = HashCodeHelper_Combine_m46115CFBF4C6C04B03559C1E6ABCE8D515F34E5C(L_4, L_5, /*hidden argument*/NULL);
V_2 = L_6;
goto IL_003c;
}
IL_003c:
{
int32_t L_7 = V_2;
return L_7;
}
}
IL2CPP_EXTERN_C int32_t MeshInfo_GetHashCode_mAA2DB4C2D99752A01FCBF238B89CC7EAD0B2586A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * _thisAdjusted = reinterpret_cast<MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 *>(__this + _offset);
return MeshInfo_GetHashCode_mAA2DB4C2D99752A01FCBF238B89CC7EAD0B2586A(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.XRDisplaySubsystem::InvokeDisplayFocusChanged(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRDisplaySubsystem_InvokeDisplayFocusChanged_mA8A70A9F25557E6C3757DCB80D8F5149AF86A877 (bool ___focus0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRDisplaySubsystem_InvokeDisplayFocusChanged_mA8A70A9F25557E6C3757DCB80D8F5149AF86A877_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * L_0 = ((XRDisplaySubsystem_t2E090C1B6925B11C9296DBBAF57F9364AADA13E0_StaticFields*)il2cpp_codegen_static_fields_for(XRDisplaySubsystem_t2E090C1B6925B11C9296DBBAF57F9364AADA13E0_il2cpp_TypeInfo_var))->get_displayFocusChanged_2();
V_0 = (bool)((!(((RuntimeObject*)(Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * L_2 = ((XRDisplaySubsystem_t2E090C1B6925B11C9296DBBAF57F9364AADA13E0_StaticFields*)il2cpp_codegen_static_fields_for(XRDisplaySubsystem_t2E090C1B6925B11C9296DBBAF57F9364AADA13E0_il2cpp_TypeInfo_var))->get_displayFocusChanged_2();
bool L_3 = ___focus0;
NullCheck(L_2);
Action_1_Invoke_m45E8F9900F9DB395C48A868A7C6A83BDD7FC692F(L_2, L_3, /*hidden argument*/Action_1_Invoke_m45E8F9900F9DB395C48A868A7C6A83BDD7FC692F_RuntimeMethod_var);
}
IL_0019:
{
return;
}
}
// System.Void UnityEngine.XR.XRDisplaySubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRDisplaySubsystem__ctor_m165FE35F533B013C640581A901D43F21F5955F05 (XRDisplaySubsystem_t2E090C1B6925B11C9296DBBAF57F9364AADA13E0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRDisplaySubsystem__ctor_m165FE35F533B013C640581A901D43F21F5955F05_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IntegratedSubsystem_1__ctor_m6C59A971C471B3036B0A4A948338736212665088(__this, /*hidden argument*/IntegratedSubsystem_1__ctor_m6C59A971C471B3036B0A4A948338736212665088_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.XRDisplaySubsystem/XRMirrorViewBlitDesc
IL2CPP_EXTERN_C void XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshal_pinvoke(const XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F& unmarshaled, XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshaled_pinvoke& marshaled)
{
marshaled.___displaySubsystemInstance_0 = unmarshaled.get_displaySubsystemInstance_0();
marshaled.___nativeBlitAvailable_1 = static_cast<int32_t>(unmarshaled.get_nativeBlitAvailable_1());
marshaled.___nativeBlitInvalidStates_2 = static_cast<int32_t>(unmarshaled.get_nativeBlitInvalidStates_2());
marshaled.___blitParamsCount_3 = unmarshaled.get_blitParamsCount_3();
}
IL2CPP_EXTERN_C void XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshal_pinvoke_back(const XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshaled_pinvoke& marshaled, XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F& unmarshaled)
{
intptr_t unmarshaled_displaySubsystemInstance_temp_0;
memset((&unmarshaled_displaySubsystemInstance_temp_0), 0, sizeof(unmarshaled_displaySubsystemInstance_temp_0));
unmarshaled_displaySubsystemInstance_temp_0 = marshaled.___displaySubsystemInstance_0;
unmarshaled.set_displaySubsystemInstance_0(unmarshaled_displaySubsystemInstance_temp_0);
bool unmarshaled_nativeBlitAvailable_temp_1 = false;
unmarshaled_nativeBlitAvailable_temp_1 = static_cast<bool>(marshaled.___nativeBlitAvailable_1);
unmarshaled.set_nativeBlitAvailable_1(unmarshaled_nativeBlitAvailable_temp_1);
bool unmarshaled_nativeBlitInvalidStates_temp_2 = false;
unmarshaled_nativeBlitInvalidStates_temp_2 = static_cast<bool>(marshaled.___nativeBlitInvalidStates_2);
unmarshaled.set_nativeBlitInvalidStates_2(unmarshaled_nativeBlitInvalidStates_temp_2);
int32_t unmarshaled_blitParamsCount_temp_3 = 0;
unmarshaled_blitParamsCount_temp_3 = marshaled.___blitParamsCount_3;
unmarshaled.set_blitParamsCount_3(unmarshaled_blitParamsCount_temp_3);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.XRDisplaySubsystem/XRMirrorViewBlitDesc
IL2CPP_EXTERN_C void XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshal_pinvoke_cleanup(XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.XRDisplaySubsystem/XRMirrorViewBlitDesc
IL2CPP_EXTERN_C void XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshal_com(const XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F& unmarshaled, XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshaled_com& marshaled)
{
marshaled.___displaySubsystemInstance_0 = unmarshaled.get_displaySubsystemInstance_0();
marshaled.___nativeBlitAvailable_1 = static_cast<int32_t>(unmarshaled.get_nativeBlitAvailable_1());
marshaled.___nativeBlitInvalidStates_2 = static_cast<int32_t>(unmarshaled.get_nativeBlitInvalidStates_2());
marshaled.___blitParamsCount_3 = unmarshaled.get_blitParamsCount_3();
}
IL2CPP_EXTERN_C void XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshal_com_back(const XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshaled_com& marshaled, XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F& unmarshaled)
{
intptr_t unmarshaled_displaySubsystemInstance_temp_0;
memset((&unmarshaled_displaySubsystemInstance_temp_0), 0, sizeof(unmarshaled_displaySubsystemInstance_temp_0));
unmarshaled_displaySubsystemInstance_temp_0 = marshaled.___displaySubsystemInstance_0;
unmarshaled.set_displaySubsystemInstance_0(unmarshaled_displaySubsystemInstance_temp_0);
bool unmarshaled_nativeBlitAvailable_temp_1 = false;
unmarshaled_nativeBlitAvailable_temp_1 = static_cast<bool>(marshaled.___nativeBlitAvailable_1);
unmarshaled.set_nativeBlitAvailable_1(unmarshaled_nativeBlitAvailable_temp_1);
bool unmarshaled_nativeBlitInvalidStates_temp_2 = false;
unmarshaled_nativeBlitInvalidStates_temp_2 = static_cast<bool>(marshaled.___nativeBlitInvalidStates_2);
unmarshaled.set_nativeBlitInvalidStates_2(unmarshaled_nativeBlitInvalidStates_temp_2);
int32_t unmarshaled_blitParamsCount_temp_3 = 0;
unmarshaled_blitParamsCount_temp_3 = marshaled.___blitParamsCount_3;
unmarshaled.set_blitParamsCount_3(unmarshaled_blitParamsCount_temp_3);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.XRDisplaySubsystem/XRMirrorViewBlitDesc
IL2CPP_EXTERN_C void XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshal_com_cleanup(XRMirrorViewBlitDesc_tBEE7F3C8555A3AFBFF990774C3CBEB8F6DD0BD5F_marshaled_com& marshaled)
{
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.XR.XRDisplaySubsystem/XRRenderPass
IL2CPP_EXTERN_C void XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshal_pinvoke(const XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13& unmarshaled, XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshaled_pinvoke& marshaled)
{
marshaled.___displaySubsystemInstance_0 = unmarshaled.get_displaySubsystemInstance_0();
marshaled.___renderPassIndex_1 = unmarshaled.get_renderPassIndex_1();
marshaled.___renderTarget_2 = unmarshaled.get_renderTarget_2();
marshaled.___renderTargetDesc_3 = unmarshaled.get_renderTargetDesc_3();
marshaled.___shouldFillOutDepth_4 = static_cast<int32_t>(unmarshaled.get_shouldFillOutDepth_4());
marshaled.___cullingPassIndex_5 = unmarshaled.get_cullingPassIndex_5();
}
IL2CPP_EXTERN_C void XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshal_pinvoke_back(const XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshaled_pinvoke& marshaled, XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13& unmarshaled)
{
intptr_t unmarshaled_displaySubsystemInstance_temp_0;
memset((&unmarshaled_displaySubsystemInstance_temp_0), 0, sizeof(unmarshaled_displaySubsystemInstance_temp_0));
unmarshaled_displaySubsystemInstance_temp_0 = marshaled.___displaySubsystemInstance_0;
unmarshaled.set_displaySubsystemInstance_0(unmarshaled_displaySubsystemInstance_temp_0);
int32_t unmarshaled_renderPassIndex_temp_1 = 0;
unmarshaled_renderPassIndex_temp_1 = marshaled.___renderPassIndex_1;
unmarshaled.set_renderPassIndex_1(unmarshaled_renderPassIndex_temp_1);
RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B unmarshaled_renderTarget_temp_2;
memset((&unmarshaled_renderTarget_temp_2), 0, sizeof(unmarshaled_renderTarget_temp_2));
unmarshaled_renderTarget_temp_2 = marshaled.___renderTarget_2;
unmarshaled.set_renderTarget_2(unmarshaled_renderTarget_temp_2);
RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E unmarshaled_renderTargetDesc_temp_3;
memset((&unmarshaled_renderTargetDesc_temp_3), 0, sizeof(unmarshaled_renderTargetDesc_temp_3));
unmarshaled_renderTargetDesc_temp_3 = marshaled.___renderTargetDesc_3;
unmarshaled.set_renderTargetDesc_3(unmarshaled_renderTargetDesc_temp_3);
bool unmarshaled_shouldFillOutDepth_temp_4 = false;
unmarshaled_shouldFillOutDepth_temp_4 = static_cast<bool>(marshaled.___shouldFillOutDepth_4);
unmarshaled.set_shouldFillOutDepth_4(unmarshaled_shouldFillOutDepth_temp_4);
int32_t unmarshaled_cullingPassIndex_temp_5 = 0;
unmarshaled_cullingPassIndex_temp_5 = marshaled.___cullingPassIndex_5;
unmarshaled.set_cullingPassIndex_5(unmarshaled_cullingPassIndex_temp_5);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.XRDisplaySubsystem/XRRenderPass
IL2CPP_EXTERN_C void XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshal_pinvoke_cleanup(XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.XR.XRDisplaySubsystem/XRRenderPass
IL2CPP_EXTERN_C void XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshal_com(const XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13& unmarshaled, XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshaled_com& marshaled)
{
marshaled.___displaySubsystemInstance_0 = unmarshaled.get_displaySubsystemInstance_0();
marshaled.___renderPassIndex_1 = unmarshaled.get_renderPassIndex_1();
marshaled.___renderTarget_2 = unmarshaled.get_renderTarget_2();
marshaled.___renderTargetDesc_3 = unmarshaled.get_renderTargetDesc_3();
marshaled.___shouldFillOutDepth_4 = static_cast<int32_t>(unmarshaled.get_shouldFillOutDepth_4());
marshaled.___cullingPassIndex_5 = unmarshaled.get_cullingPassIndex_5();
}
IL2CPP_EXTERN_C void XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshal_com_back(const XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshaled_com& marshaled, XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13& unmarshaled)
{
intptr_t unmarshaled_displaySubsystemInstance_temp_0;
memset((&unmarshaled_displaySubsystemInstance_temp_0), 0, sizeof(unmarshaled_displaySubsystemInstance_temp_0));
unmarshaled_displaySubsystemInstance_temp_0 = marshaled.___displaySubsystemInstance_0;
unmarshaled.set_displaySubsystemInstance_0(unmarshaled_displaySubsystemInstance_temp_0);
int32_t unmarshaled_renderPassIndex_temp_1 = 0;
unmarshaled_renderPassIndex_temp_1 = marshaled.___renderPassIndex_1;
unmarshaled.set_renderPassIndex_1(unmarshaled_renderPassIndex_temp_1);
RenderTargetIdentifier_tB7480EE944FC70E0AB7D499DB17D119EB65B0F5B unmarshaled_renderTarget_temp_2;
memset((&unmarshaled_renderTarget_temp_2), 0, sizeof(unmarshaled_renderTarget_temp_2));
unmarshaled_renderTarget_temp_2 = marshaled.___renderTarget_2;
unmarshaled.set_renderTarget_2(unmarshaled_renderTarget_temp_2);
RenderTextureDescriptor_t74FEC57A54F89E11748E1865F7DCA3565BFAF58E unmarshaled_renderTargetDesc_temp_3;
memset((&unmarshaled_renderTargetDesc_temp_3), 0, sizeof(unmarshaled_renderTargetDesc_temp_3));
unmarshaled_renderTargetDesc_temp_3 = marshaled.___renderTargetDesc_3;
unmarshaled.set_renderTargetDesc_3(unmarshaled_renderTargetDesc_temp_3);
bool unmarshaled_shouldFillOutDepth_temp_4 = false;
unmarshaled_shouldFillOutDepth_temp_4 = static_cast<bool>(marshaled.___shouldFillOutDepth_4);
unmarshaled.set_shouldFillOutDepth_4(unmarshaled_shouldFillOutDepth_temp_4);
int32_t unmarshaled_cullingPassIndex_temp_5 = 0;
unmarshaled_cullingPassIndex_temp_5 = marshaled.___cullingPassIndex_5;
unmarshaled.set_cullingPassIndex_5(unmarshaled_cullingPassIndex_temp_5);
}
// Conversion method for clean up from marshalling of: UnityEngine.XR.XRDisplaySubsystem/XRRenderPass
IL2CPP_EXTERN_C void XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshal_com_cleanup(XRRenderPass_tD19A615ECA4DED12BF47250E6F2D52D9E7527F13_marshaled_com& marshaled)
{
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.XRDisplaySubsystemDescriptor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRDisplaySubsystemDescriptor__ctor_m906C40C1CF91BAD978A4353EC4C4A228E4B07B97 (XRDisplaySubsystemDescriptor_tC24B1C560B0C50AD3094D5F22BFFD25DD7AE6259 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRDisplaySubsystemDescriptor__ctor_m906C40C1CF91BAD978A4353EC4C4A228E4B07B97_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IntegratedSubsystemDescriptor_1__ctor_m6117F01E29F54F0CC64A4F7459678F5917DDDAA4(__this, /*hidden argument*/IntegratedSubsystemDescriptor_1__ctor_m6117F01E29F54F0CC64A4F7459678F5917DDDAA4_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.XRInputSubsystem::InvokeTrackingOriginUpdatedEvent(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInputSubsystem_InvokeTrackingOriginUpdatedEvent_mE0A1CD4D24BD66A5F5BE793DD5EF01D94F20973D (intptr_t ___internalPtr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRInputSubsystem_InvokeTrackingOriginUpdatedEvent_mE0A1CD4D24BD66A5F5BE793DD5EF01D94F20973D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026 * V_0 = NULL;
XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 * V_1 = NULL;
bool V_2 = false;
int32_t G_B3_0 = 0;
{
intptr_t L_0 = ___internalPtr0;
IL2CPP_RUNTIME_CLASS_INIT(Internal_SubsystemInstances_tB061667F7AEBE0E336E6DE40389E18414A43BB9A_il2cpp_TypeInfo_var);
IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026 * L_1 = Internal_SubsystemInstances_Internal_GetInstanceByPtr_m2A3E2B194F743DA1505586132038FA64DF8FB407((intptr_t)L_0, /*hidden argument*/NULL);
V_0 = L_1;
IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026 * L_2 = V_0;
V_1 = ((XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 *)IsInstClass((RuntimeObject*)L_2, XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7_il2cpp_TypeInfo_var));
XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 * L_3 = V_1;
if (!L_3)
{
goto IL_001d;
}
}
{
XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 * L_4 = V_1;
NullCheck(L_4);
Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 * L_5 = L_4->get_trackingOriginUpdated_2();
G_B3_0 = ((!(((RuntimeObject*)(Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 *)L_5) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
goto IL_001e;
}
IL_001d:
{
G_B3_0 = 0;
}
IL_001e:
{
V_2 = (bool)G_B3_0;
bool L_6 = V_2;
if (!L_6)
{
goto IL_002f;
}
}
{
XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 * L_7 = V_1;
NullCheck(L_7);
Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 * L_8 = L_7->get_trackingOriginUpdated_2();
XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 * L_9 = V_1;
NullCheck(L_8);
Action_1_Invoke_m4CB47E8F2868FBE68282A73D1E82C97387CC7224(L_8, L_9, /*hidden argument*/Action_1_Invoke_m4CB47E8F2868FBE68282A73D1E82C97387CC7224_RuntimeMethod_var);
}
IL_002f:
{
return;
}
}
// System.Void UnityEngine.XR.XRInputSubsystem::InvokeBoundaryChangedEvent(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInputSubsystem_InvokeBoundaryChangedEvent_m969BB48ED88967BF87F7311BFE1EEC45D2302702 (intptr_t ___internalPtr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRInputSubsystem_InvokeBoundaryChangedEvent_m969BB48ED88967BF87F7311BFE1EEC45D2302702_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026 * V_0 = NULL;
XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 * V_1 = NULL;
bool V_2 = false;
int32_t G_B3_0 = 0;
{
intptr_t L_0 = ___internalPtr0;
IL2CPP_RUNTIME_CLASS_INIT(Internal_SubsystemInstances_tB061667F7AEBE0E336E6DE40389E18414A43BB9A_il2cpp_TypeInfo_var);
IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026 * L_1 = Internal_SubsystemInstances_Internal_GetInstanceByPtr_m2A3E2B194F743DA1505586132038FA64DF8FB407((intptr_t)L_0, /*hidden argument*/NULL);
V_0 = L_1;
IntegratedSubsystem_tEFE71989A825ABA8955C1B1505C8F2405FA61026 * L_2 = V_0;
V_1 = ((XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 *)IsInstClass((RuntimeObject*)L_2, XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7_il2cpp_TypeInfo_var));
XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 * L_3 = V_1;
if (!L_3)
{
goto IL_001d;
}
}
{
XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 * L_4 = V_1;
NullCheck(L_4);
Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 * L_5 = L_4->get_boundaryChanged_3();
G_B3_0 = ((!(((RuntimeObject*)(Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 *)L_5) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
goto IL_001e;
}
IL_001d:
{
G_B3_0 = 0;
}
IL_001e:
{
V_2 = (bool)G_B3_0;
bool L_6 = V_2;
if (!L_6)
{
goto IL_002f;
}
}
{
XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 * L_7 = V_1;
NullCheck(L_7);
Action_1_tE36D94C70DDB9BA2EFBB2876BF63E27C74A181C6 * L_8 = L_7->get_boundaryChanged_3();
XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 * L_9 = V_1;
NullCheck(L_8);
Action_1_Invoke_m4CB47E8F2868FBE68282A73D1E82C97387CC7224(L_8, L_9, /*hidden argument*/Action_1_Invoke_m4CB47E8F2868FBE68282A73D1E82C97387CC7224_RuntimeMethod_var);
}
IL_002f:
{
return;
}
}
// System.Void UnityEngine.XR.XRInputSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInputSubsystem__ctor_m61D1698F3B14A2EC28BB0EC42912FD47B593EAF3 (XRInputSubsystem_t9B5A5AD5B134D55762D1FA5E425126EF7F86B2B7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRInputSubsystem__ctor_m61D1698F3B14A2EC28BB0EC42912FD47B593EAF3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IntegratedSubsystem_1__ctor_mBA2862C42655BCC9EDC76EE901CB6500A32DEA9D(__this, /*hidden argument*/IntegratedSubsystem_1__ctor_mBA2862C42655BCC9EDC76EE901CB6500A32DEA9D_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.XRInputSubsystemDescriptor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRInputSubsystemDescriptor__ctor_m855F6124D0F7637429BB9E4156C12B6C501B41B0 (XRInputSubsystemDescriptor_t0695204904011F75FF666A5F623C98FBCC163AD5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRInputSubsystemDescriptor__ctor_m855F6124D0F7637429BB9E4156C12B6C501B41B0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IntegratedSubsystemDescriptor_1__ctor_m3B5162617EB2232B4F2453003AF1AD8EBE78021D(__this, /*hidden argument*/IntegratedSubsystemDescriptor_1__ctor_m3B5162617EB2232B4F2453003AF1AD8EBE78021D_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean UnityEngine.XR.XRMeshSubsystem::TryGetMeshInfos(System.Collections.Generic.List`1<UnityEngine.XR.MeshInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRMeshSubsystem_TryGetMeshInfos_m32691622E093BD37877174447CC77D7487E55B00 (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 * __this, List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661 * ___meshInfosOut0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRMeshSubsystem_TryGetMeshInfos_m32691622E093BD37877174447CC77D7487E55B00_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661 * L_0 = ___meshInfosOut0;
V_0 = (bool)((((RuntimeObject*)(List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral22245389D6EF55C8148C4F722171CE2D37666539, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, XRMeshSubsystem_TryGetMeshInfos_m32691622E093BD37877174447CC77D7487E55B00_RuntimeMethod_var);
}
IL_0014:
{
List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661 * L_3 = ___meshInfosOut0;
bool L_4 = XRMeshSubsystem_GetMeshInfosAsList_m5A19C05957573C4CA4536A69EBD3D41634820107(__this, L_3, /*hidden argument*/NULL);
V_1 = L_4;
goto IL_001e;
}
IL_001e:
{
bool L_5 = V_1;
return L_5;
}
}
// System.Boolean UnityEngine.XR.XRMeshSubsystem::GetMeshInfosAsList(System.Collections.Generic.List`1<UnityEngine.XR.MeshInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRMeshSubsystem_GetMeshInfosAsList_m5A19C05957573C4CA4536A69EBD3D41634820107 (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 * __this, List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661 * ___meshInfos0, const RuntimeMethod* method)
{
typedef bool (*XRMeshSubsystem_GetMeshInfosAsList_m5A19C05957573C4CA4536A69EBD3D41634820107_ftn) (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 *, List_1_t8B901F577995BDF2BDFC726428DFE35A17BB6661 *);
static XRMeshSubsystem_GetMeshInfosAsList_m5A19C05957573C4CA4536A69EBD3D41634820107_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (XRMeshSubsystem_GetMeshInfosAsList_m5A19C05957573C4CA4536A69EBD3D41634820107_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.XR.XRMeshSubsystem::GetMeshInfosAsList(System.Collections.Generic.List`1<UnityEngine.XR.MeshInfo>)");
bool retVal = _il2cpp_icall_func(__this, ___meshInfos0);
return retVal;
}
// System.Void UnityEngine.XR.XRMeshSubsystem::GenerateMeshAsync(UnityEngine.XR.MeshId,UnityEngine.Mesh,UnityEngine.MeshCollider,UnityEngine.XR.MeshVertexAttributes,System.Action`1<UnityEngine.XR.MeshGenerationResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRMeshSubsystem_GenerateMeshAsync_m3893DD22BD77435E85D51F9C1E48313DB9559EAD (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 * __this, MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A ___meshId0, Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh1, MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___meshCollider2, int32_t ___attributes3, Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C * ___onMeshGenerationComplete4, const RuntimeMethod* method)
{
{
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * L_0 = ___mesh1;
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * L_1 = ___meshCollider2;
int32_t L_2 = ___attributes3;
Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C * L_3 = ___onMeshGenerationComplete4;
XRMeshSubsystem_GenerateMeshAsync_Injected_m1F782B9EA581FD36A2F73059865250F889947613(__this, (MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *)(&___meshId0), L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.XR.XRMeshSubsystem::InvokeMeshReadyDelegate(UnityEngine.XR.MeshGenerationResult,System.Action`1<UnityEngine.XR.MeshGenerationResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRMeshSubsystem_InvokeMeshReadyDelegate_m46B89EE8ACC67733B6272C547EDFE828393BE7CE (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 * __this, MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A ___result0, Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C * ___onMeshGenerationComplete1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRMeshSubsystem_InvokeMeshReadyDelegate_m46B89EE8ACC67733B6272C547EDFE828393BE7CE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C * L_0 = ___onMeshGenerationComplete1;
V_0 = (bool)((!(((RuntimeObject*)(Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0011;
}
}
{
Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C * L_2 = ___onMeshGenerationComplete1;
MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A L_3 = ___result0;
NullCheck(L_2);
Action_1_Invoke_mB246C65D547D955CD43C9F82F032CC2CF9C4918B(L_2, L_3, /*hidden argument*/Action_1_Invoke_mB246C65D547D955CD43C9F82F032CC2CF9C4918B_RuntimeMethod_var);
}
IL_0011:
{
return;
}
}
// System.Void UnityEngine.XR.XRMeshSubsystem::set_meshDensity(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRMeshSubsystem_set_meshDensity_mD315BB1EB878525460C446B5A68A3FDB38216126 (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 * __this, float ___value0, const RuntimeMethod* method)
{
typedef void (*XRMeshSubsystem_set_meshDensity_mD315BB1EB878525460C446B5A68A3FDB38216126_ftn) (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 *, float);
static XRMeshSubsystem_set_meshDensity_mD315BB1EB878525460C446B5A68A3FDB38216126_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (XRMeshSubsystem_set_meshDensity_mD315BB1EB878525460C446B5A68A3FDB38216126_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.XR.XRMeshSubsystem::set_meshDensity(System.Single)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Boolean UnityEngine.XR.XRMeshSubsystem::SetBoundingVolume(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRMeshSubsystem_SetBoundingVolume_mAB381633D4CFB71D47BD5FB736BE6236C8A608BA (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___origin0, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___extents1, const RuntimeMethod* method)
{
{
bool L_0 = XRMeshSubsystem_SetBoundingVolume_Injected_m5489F8F5DB020D9C974B6CE3F481EC9EDBF43818(__this, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&___origin0), (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&___extents1), /*hidden argument*/NULL);
return L_0;
}
}
// System.Void UnityEngine.XR.XRMeshSubsystem::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRMeshSubsystem__ctor_m552EA5F9E0B43C7A30AAB6B3841CE5FBBFA07D2E (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRMeshSubsystem__ctor_m552EA5F9E0B43C7A30AAB6B3841CE5FBBFA07D2E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IntegratedSubsystem_1__ctor_m8BC125DB36F9434B07EFAAF056356DD665057EE3(__this, /*hidden argument*/IntegratedSubsystem_1__ctor_m8BC125DB36F9434B07EFAAF056356DD665057EE3_RuntimeMethod_var);
return;
}
}
// System.Void UnityEngine.XR.XRMeshSubsystem::GenerateMeshAsync_Injected(UnityEngine.XR.MeshId&,UnityEngine.Mesh,UnityEngine.MeshCollider,UnityEngine.XR.MeshVertexAttributes,System.Action`1<UnityEngine.XR.MeshGenerationResult>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRMeshSubsystem_GenerateMeshAsync_Injected_m1F782B9EA581FD36A2F73059865250F889947613 (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 * __this, MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A * ___meshId0, Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh1, MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * ___meshCollider2, int32_t ___attributes3, Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C * ___onMeshGenerationComplete4, const RuntimeMethod* method)
{
typedef void (*XRMeshSubsystem_GenerateMeshAsync_Injected_m1F782B9EA581FD36A2F73059865250F889947613_ftn) (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 *, MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A *, Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C *, MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE *, int32_t, Action_1_tC000C2A9E7CAB4EC5456D1A111CAF561BBAD353C *);
static XRMeshSubsystem_GenerateMeshAsync_Injected_m1F782B9EA581FD36A2F73059865250F889947613_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (XRMeshSubsystem_GenerateMeshAsync_Injected_m1F782B9EA581FD36A2F73059865250F889947613_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.XR.XRMeshSubsystem::GenerateMeshAsync_Injected(UnityEngine.XR.MeshId&,UnityEngine.Mesh,UnityEngine.MeshCollider,UnityEngine.XR.MeshVertexAttributes,System.Action`1<UnityEngine.XR.MeshGenerationResult>)");
_il2cpp_icall_func(__this, ___meshId0, ___mesh1, ___meshCollider2, ___attributes3, ___onMeshGenerationComplete4);
}
// System.Boolean UnityEngine.XR.XRMeshSubsystem::SetBoundingVolume_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRMeshSubsystem_SetBoundingVolume_Injected_m5489F8F5DB020D9C974B6CE3F481EC9EDBF43818 (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___origin0, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___extents1, const RuntimeMethod* method)
{
typedef bool (*XRMeshSubsystem_SetBoundingVolume_Injected_m5489F8F5DB020D9C974B6CE3F481EC9EDBF43818_ftn) (XRMeshSubsystem_t6FB1A94A4B7956BCE5A99B6C826D46A21C69A8B9 *, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *);
static XRMeshSubsystem_SetBoundingVolume_Injected_m5489F8F5DB020D9C974B6CE3F481EC9EDBF43818_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (XRMeshSubsystem_SetBoundingVolume_Injected_m5489F8F5DB020D9C974B6CE3F481EC9EDBF43818_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.XR.XRMeshSubsystem::SetBoundingVolume_Injected(UnityEngine.Vector3&,UnityEngine.Vector3&)");
bool retVal = _il2cpp_icall_func(__this, ___origin0, ___extents1);
return retVal;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.XRMeshSubsystemDescriptor::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRMeshSubsystemDescriptor__ctor_m44E44EEF055312E5359F476FBAF42CC330FEC5DD (XRMeshSubsystemDescriptor_t714B4140E276BE215234C3BB3F252D6C12A23AFB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRMeshSubsystemDescriptor__ctor_m44E44EEF055312E5359F476FBAF42CC330FEC5DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IntegratedSubsystemDescriptor_1__ctor_mF72F72B847AC92E53503FA2E6AA6100020B8B371(__this, /*hidden argument*/IntegratedSubsystemDescriptor_1__ctor_mF72F72B847AC92E53503FA2E6AA6100020B8B371_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.XRNodeState::set_uniqueID(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRNodeState_set_uniqueID_m0A71A6EE7B7C516C9DEAE99BEECE66B21463F2E3 (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_m_UniqueID_9(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRNodeState_set_uniqueID_m0A71A6EE7B7C516C9DEAE99BEECE66B21463F2E3_AdjustorThunk (RuntimeObject * __this, uint64_t ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * _thisAdjusted = reinterpret_cast<XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *>(__this + _offset);
XRNodeState_set_uniqueID_m0A71A6EE7B7C516C9DEAE99BEECE66B21463F2E3(_thisAdjusted, ___value0, method);
}
// UnityEngine.XR.XRNode UnityEngine.XR.XRNodeState::get_nodeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XRNodeState_get_nodeType_m40ED41E75B0CD73974B0E6812AA33A3D69495AC7 (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_Type_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t XRNodeState_get_nodeType_m40ED41E75B0CD73974B0E6812AA33A3D69495AC7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * _thisAdjusted = reinterpret_cast<XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *>(__this + _offset);
return XRNodeState_get_nodeType_m40ED41E75B0CD73974B0E6812AA33A3D69495AC7(_thisAdjusted, method);
}
// System.Void UnityEngine.XR.XRNodeState::set_nodeType(UnityEngine.XR.XRNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRNodeState_set_nodeType_m0C4B5A3021F19FCA3B79DC704D0F4E334EB7E6CE (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_m_Type_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void XRNodeState_set_nodeType_m0C4B5A3021F19FCA3B79DC704D0F4E334EB7E6CE_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * _thisAdjusted = reinterpret_cast<XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *>(__this + _offset);
XRNodeState_set_nodeType_m0C4B5A3021F19FCA3B79DC704D0F4E334EB7E6CE(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.XR.XRNodeState::set_tracked(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XRNodeState_set_tracked_mC82DD9C7B6F061C452A0D89DE1A018CF68E581E2 (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, bool ___value0, const RuntimeMethod* method)
{
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * G_B2_0 = NULL;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * G_B1_0 = NULL;
int32_t G_B3_0 = 0;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * G_B3_1 = NULL;
{
bool L_0 = ___value0;
G_B1_0 = __this;
if (L_0)
{
G_B2_0 = __this;
goto IL_0008;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
goto IL_0009;
}
IL_0008:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
}
IL_0009:
{
G_B3_1->set_m_Tracked_8(G_B3_0);
return;
}
}
IL2CPP_EXTERN_C void XRNodeState_set_tracked_mC82DD9C7B6F061C452A0D89DE1A018CF68E581E2_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * _thisAdjusted = reinterpret_cast<XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *>(__this + _offset);
XRNodeState_set_tracked_mC82DD9C7B6F061C452A0D89DE1A018CF68E581E2(_thisAdjusted, ___value0, method);
}
// System.Boolean UnityEngine.XR.XRNodeState::TryGetPosition(UnityEngine.Vector3&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRNodeState_TryGetPosition_mD3F619954C89FF16045960AAEF4D5218E17B6E8C (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___position0, const RuntimeMethod* method)
{
bool V_0 = false;
{
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_0 = __this->get_m_Position_2();
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * L_1 = ___position0;
bool L_2 = XRNodeState_TryGet_m1B4C4C8993A23503E69F253589F11458C3388C59((XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *)__this, L_0, 1, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)L_1, /*hidden argument*/NULL);
V_0 = L_2;
goto IL_0012;
}
IL_0012:
{
bool L_3 = V_0;
return L_3;
}
}
IL2CPP_EXTERN_C bool XRNodeState_TryGetPosition_mD3F619954C89FF16045960AAEF4D5218E17B6E8C_AdjustorThunk (RuntimeObject * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___position0, const RuntimeMethod* method)
{
int32_t _offset = 1;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * _thisAdjusted = reinterpret_cast<XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *>(__this + _offset);
return XRNodeState_TryGetPosition_mD3F619954C89FF16045960AAEF4D5218E17B6E8C(_thisAdjusted, ___position0, method);
}
// System.Boolean UnityEngine.XR.XRNodeState::TryGetRotation(UnityEngine.Quaternion&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRNodeState_TryGetRotation_m2AE7B2C4907BB94036A74133FEE1389E273D38B9 (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * ___rotation0, const RuntimeMethod* method)
{
bool V_0 = false;
{
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_0 = __this->get_m_Rotation_3();
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * L_1 = ___rotation0;
bool L_2 = XRNodeState_TryGet_mBE55684EC4CA3C034D1E1AD21AA221B70F3048DF((XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *)__this, L_0, 2, (Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)L_1, /*hidden argument*/NULL);
V_0 = L_2;
goto IL_0012;
}
IL_0012:
{
bool L_3 = V_0;
return L_3;
}
}
IL2CPP_EXTERN_C bool XRNodeState_TryGetRotation_m2AE7B2C4907BB94036A74133FEE1389E273D38B9_AdjustorThunk (RuntimeObject * __this, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * ___rotation0, const RuntimeMethod* method)
{
int32_t _offset = 1;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * _thisAdjusted = reinterpret_cast<XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *>(__this + _offset);
return XRNodeState_TryGetRotation_m2AE7B2C4907BB94036A74133FEE1389E273D38B9(_thisAdjusted, ___rotation0, method);
}
// System.Boolean UnityEngine.XR.XRNodeState::TryGet(UnityEngine.Vector3,UnityEngine.XR.AvailableTrackingData,UnityEngine.Vector3&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRNodeState_TryGet_m1B4C4C8993A23503E69F253589F11458C3388C59 (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___inValue0, int32_t ___availabilityFlag1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___outValue2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRNodeState_TryGet_m1B4C4C8993A23503E69F253589F11458C3388C59_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
int32_t L_0 = __this->get_m_AvailableFields_1();
int32_t L_1 = ___availabilityFlag1;
V_0 = (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))) > ((int32_t)0))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_001c;
}
}
{
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * L_3 = ___outValue2;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_4 = ___inValue0;
*(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)L_3 = L_4;
V_1 = (bool)1;
goto IL_002c;
}
IL_001c:
{
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * L_5 = ___outValue2;
IL2CPP_RUNTIME_CLASS_INIT(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var);
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_6 = Vector3_get_zero_m3CDDCAE94581DF3BB16C4B40A100E28E9C6649C2(/*hidden argument*/NULL);
*(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)L_5 = L_6;
V_1 = (bool)0;
goto IL_002c;
}
IL_002c:
{
bool L_7 = V_1;
return L_7;
}
}
IL2CPP_EXTERN_C bool XRNodeState_TryGet_m1B4C4C8993A23503E69F253589F11458C3388C59_AdjustorThunk (RuntimeObject * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___inValue0, int32_t ___availabilityFlag1, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * ___outValue2, const RuntimeMethod* method)
{
int32_t _offset = 1;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * _thisAdjusted = reinterpret_cast<XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *>(__this + _offset);
return XRNodeState_TryGet_m1B4C4C8993A23503E69F253589F11458C3388C59(_thisAdjusted, ___inValue0, ___availabilityFlag1, ___outValue2, method);
}
// System.Boolean UnityEngine.XR.XRNodeState::TryGet(UnityEngine.Quaternion,UnityEngine.XR.AvailableTrackingData,UnityEngine.Quaternion&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XRNodeState_TryGet_mBE55684EC4CA3C034D1E1AD21AA221B70F3048DF (XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * __this, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___inValue0, int32_t ___availabilityFlag1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * ___outValue2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (XRNodeState_TryGet_mBE55684EC4CA3C034D1E1AD21AA221B70F3048DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
int32_t L_0 = __this->get_m_AvailableFields_1();
int32_t L_1 = ___availabilityFlag1;
V_0 = (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))) > ((int32_t)0))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_001c;
}
}
{
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * L_3 = ___outValue2;
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_4 = ___inValue0;
*(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)L_3 = L_4;
V_1 = (bool)1;
goto IL_002c;
}
IL_001c:
{
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * L_5 = ___outValue2;
IL2CPP_RUNTIME_CLASS_INIT(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_il2cpp_TypeInfo_var);
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 L_6 = Quaternion_get_identity_m548B37D80F2DEE60E41D1F09BF6889B557BE1A64(/*hidden argument*/NULL);
*(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 *)L_5 = L_6;
V_1 = (bool)0;
goto IL_002c;
}
IL_002c:
{
bool L_7 = V_1;
return L_7;
}
}
IL2CPP_EXTERN_C bool XRNodeState_TryGet_mBE55684EC4CA3C034D1E1AD21AA221B70F3048DF_AdjustorThunk (RuntimeObject * __this, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___inValue0, int32_t ___availabilityFlag1, Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * ___outValue2, const RuntimeMethod* method)
{
int32_t _offset = 1;
XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A * _thisAdjusted = reinterpret_cast<XRNodeState_t927C248D649ED31F587DFE078E3FF180D98F7C0A *>(__this + _offset);
return XRNodeState_TryGet_mBE55684EC4CA3C034D1E1AD21AA221B70F3048DF(_thisAdjusted, ___inValue0, ___availabilityFlag1, ___outValue2, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A MeshGenerationResult_get_MeshId_m1113338E0F307CF16B4B4BE21666294DD4D256E1_inline (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method)
{
{
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_0 = __this->get_U3CMeshIdU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * MeshGenerationResult_get_Mesh_m0EBB5B1AD63C64D39486EFFBE21166DC6C3E7575_inline (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method)
{
{
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * L_0 = __this->get_U3CMeshU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * MeshGenerationResult_get_MeshCollider_m6ED813F4C16388132DDCD6A65240DBF3C165E524_inline (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method)
{
{
MeshCollider_t60EB55ADE92499FE8D1AA206D2BD96E65B2766DE * L_0 = __this->get_U3CMeshColliderU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t MeshGenerationResult_get_Status_mB2A2937F3CEA5264B977F6FAAD054CE353CDC248_inline (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CStatusU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t MeshGenerationResult_get_Attributes_m2130FD5614F6772B24E31DD7127EB66066158A90_inline (MeshGenerationResult_tC1C81EF3BAD05FB75B6F182C0EFCFB53236FB42A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CAttributesU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A MeshInfo_get_MeshId_mCADC4A52D7A1229FC4FCC930D320201BE4DFA7C7_inline (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, const RuntimeMethod* method)
{
{
MeshId_t8674C6A14E469B2507FCDEBBE7F77ACC3CA37C1A L_0 = __this->get_U3CMeshIdU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t MeshInfo_get_ChangeState_m841D373DCDEDA4C40AEF7D40A56062C2048FD730_inline (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CChangeStateU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t MeshInfo_get_PriorityHint_m5BD302D8B09FFCBE1C1738A7DB1F1A92ED74429F_inline (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CPriorityHintU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MeshInfo_set_PriorityHint_m1FFF79BA0BCB6070474EB829A357F6259D97CE36_inline (MeshInfo_t4B920031BA3C7DD11936A8CCA4F0763BE6CAF7E3 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CPriorityHintU3Ek__BackingField_2(L_0);
return;
}
}