UnityEngine.TextCoreModule.cpp
290.3 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
#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
// System.Action`1<UnityEngine.Font>
struct Action_1_tC07E78969BFFC97261F80F4C08915A046DFDD9C7;
// System.Collections.Generic.Dictionary`2<System.UInt32,UnityEngine.TextCore.Glyph>
struct Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE;
// System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>
struct Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75;
// System.Collections.Generic.IEqualityComparer`1<System.UInt32>
struct IEqualityComparer_1_t75C3361D3BE51E9742B0BBFA0F3998120E7CB6CE;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt32,UnityEngine.TextCore.Glyph>
struct KeyCollection_t04B68A9A576D1B9B53769953130AAC6DF22B5B71;
// System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>
struct List_1_tE870449A6BC21548542BC92F18B284004FA8668A;
// System.Collections.Generic.List`1<System.UInt32>
struct List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt32,UnityEngine.TextCore.Glyph>
struct ValueCollection_t7AA68FFFD6B6520835D0E5DAC023274AABA8AD87;
// System.Collections.Generic.Dictionary`2/Entry<System.UInt32,UnityEngine.TextCore.Glyph>[]
struct EntryU5BU5D_tA3837BCE14260AC046667F4677CA376DD6AC77CF;
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// UnityEngine.TextCore.Glyph[]
struct GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B;
// UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct[]
struct GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D;
// UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord[]
struct GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609;
// UnityEngine.TextCore.GlyphRect[]
struct GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA;
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
// System.IntPtr[]
struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
// System.UInt32[]
struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF;
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00;
// UnityEngine.Font
struct Font_tB53D3F362CB1A0B92307B362826F212AE2D2A6A9;
// UnityEngine.TextCore.Glyph
struct Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1;
// System.Collections.IDictionary
struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
// UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
// System.String
struct String_t;
// UnityEngine.Texture2D
struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF;
// System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
// UnityEngine.Font/FontTextureRebuildCallback
struct FontTextureRebuildCallback_tBF11A511EBD8D237A1C5885D460B42A45DDBB2DB;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral31D159E683556C06B3B3963D92483B6867EB3233;
IL2CPP_EXTERN_C String_t* _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F;
IL2CPP_EXTERN_C String_t* _stringLiteralF0EDAB22225C2411ABFD38819044326FB5BDC916;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mA742BAFFA1D2C33D93731258D03686051DD22B98_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169_mEDCA1FCB26A509EEB1E1FDB5031380E479AC007C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m70BC2BBCAA532A1588DB59CA7E556F541F32621D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m31E439898C27BC917E851D5219B3EC4E53618ADE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Profiler_ValidateArguments_mBD8BD2520B428CBAA924D27613F9F0BB5D9C4512_RuntimeMethod_var;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B;
struct GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D;
struct GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609;
struct GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA;
struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF;
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_t52269C3CB045A95B23D81F414AA4B6CB764716D6
{
public:
public:
};
// System.Object
// System.Collections.Generic.Dictionary`2<System.UInt32,UnityEngine.TextCore.Glyph>
struct Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_tA3837BCE14260AC046667F4677CA376DD6AC77CF* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_t04B68A9A576D1B9B53769953130AAC6DF22B5B71 * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t7AA68FFFD6B6520835D0E5DAC023274AABA8AD87 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE, ___buckets_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE, ___entries_1)); }
inline EntryU5BU5D_tA3837BCE14260AC046667F4677CA376DD6AC77CF* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tA3837BCE14260AC046667F4677CA376DD6AC77CF** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tA3837BCE14260AC046667F4677CA376DD6AC77CF* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE, ___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_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE, ___keys_7)); }
inline KeyCollection_t04B68A9A576D1B9B53769953130AAC6DF22B5B71 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t04B68A9A576D1B9B53769953130AAC6DF22B5B71 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t04B68A9A576D1B9B53769953130AAC6DF22B5B71 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE, ___values_8)); }
inline ValueCollection_t7AA68FFFD6B6520835D0E5DAC023274AABA8AD87 * get_values_8() const { return ___values_8; }
inline ValueCollection_t7AA68FFFD6B6520835D0E5DAC023274AABA8AD87 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t7AA68FFFD6B6520835D0E5DAC023274AABA8AD87 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>
struct List_1_tE870449A6BC21548542BC92F18B284004FA8668A : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ____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_tE870449A6BC21548542BC92F18B284004FA8668A, ____items_1)); }
inline GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* get__items_1() const { return ____items_1; }
inline GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* 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_tE870449A6BC21548542BC92F18B284004FA8668A, ____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_tE870449A6BC21548542BC92F18B284004FA8668A, ____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_tE870449A6BC21548542BC92F18B284004FA8668A, ____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_tE870449A6BC21548542BC92F18B284004FA8668A_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE870449A6BC21548542BC92F18B284004FA8668A_StaticFields, ____emptyArray_5)); }
inline GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* get__emptyArray_5() const { return ____emptyArray_5; }
inline GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.UInt32>
struct List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ____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_t023026A8F0D0D113E2B62213C8C74717BF7F4731, ____items_1)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get__items_1() const { return ____items_1; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* 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_t023026A8F0D0D113E2B62213C8C74717BF7F4731, ____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_t023026A8F0D0D113E2B62213C8C74717BF7F4731, ____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_t023026A8F0D0D113E2B62213C8C74717BF7F4731, ____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_t023026A8F0D0D113E2B62213C8C74717BF7F4731_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731_StaticFields, ____emptyArray_5)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get__emptyArray_5() const { return ____emptyArray_5; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
struct Il2CppArrayBounds;
// System.Array
// UnityEngine.TextCore.LowLevel.FontEngine
struct FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5 : public RuntimeObject
{
public:
public:
};
struct FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields
{
public:
// UnityEngine.TextCore.Glyph[] UnityEngine.TextCore.LowLevel.FontEngine::s_Glyphs
GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B* ___s_Glyphs_0;
// System.UInt32[] UnityEngine.TextCore.LowLevel.FontEngine::s_GlyphIndexes_MarshallingArray_A
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___s_GlyphIndexes_MarshallingArray_A_1;
// UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct[] UnityEngine.TextCore.LowLevel.FontEngine::s_GlyphMarshallingStruct_IN
GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* ___s_GlyphMarshallingStruct_IN_2;
// UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct[] UnityEngine.TextCore.LowLevel.FontEngine::s_GlyphMarshallingStruct_OUT
GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* ___s_GlyphMarshallingStruct_OUT_3;
// UnityEngine.TextCore.GlyphRect[] UnityEngine.TextCore.LowLevel.FontEngine::s_FreeGlyphRects
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ___s_FreeGlyphRects_4;
// UnityEngine.TextCore.GlyphRect[] UnityEngine.TextCore.LowLevel.FontEngine::s_UsedGlyphRects
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ___s_UsedGlyphRects_5;
// UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord[] UnityEngine.TextCore.LowLevel.FontEngine::s_PairAdjustmentRecords_MarshallingArray
GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609* ___s_PairAdjustmentRecords_MarshallingArray_6;
// System.Collections.Generic.Dictionary`2<System.UInt32,UnityEngine.TextCore.Glyph> UnityEngine.TextCore.LowLevel.FontEngine::s_GlyphLookupDictionary
Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE * ___s_GlyphLookupDictionary_7;
public:
inline static int32_t get_offset_of_s_Glyphs_0() { return static_cast<int32_t>(offsetof(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields, ___s_Glyphs_0)); }
inline GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B* get_s_Glyphs_0() const { return ___s_Glyphs_0; }
inline GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B** get_address_of_s_Glyphs_0() { return &___s_Glyphs_0; }
inline void set_s_Glyphs_0(GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B* value)
{
___s_Glyphs_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Glyphs_0), (void*)value);
}
inline static int32_t get_offset_of_s_GlyphIndexes_MarshallingArray_A_1() { return static_cast<int32_t>(offsetof(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields, ___s_GlyphIndexes_MarshallingArray_A_1)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_s_GlyphIndexes_MarshallingArray_A_1() const { return ___s_GlyphIndexes_MarshallingArray_A_1; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_s_GlyphIndexes_MarshallingArray_A_1() { return &___s_GlyphIndexes_MarshallingArray_A_1; }
inline void set_s_GlyphIndexes_MarshallingArray_A_1(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value)
{
___s_GlyphIndexes_MarshallingArray_A_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_GlyphIndexes_MarshallingArray_A_1), (void*)value);
}
inline static int32_t get_offset_of_s_GlyphMarshallingStruct_IN_2() { return static_cast<int32_t>(offsetof(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields, ___s_GlyphMarshallingStruct_IN_2)); }
inline GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* get_s_GlyphMarshallingStruct_IN_2() const { return ___s_GlyphMarshallingStruct_IN_2; }
inline GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D** get_address_of_s_GlyphMarshallingStruct_IN_2() { return &___s_GlyphMarshallingStruct_IN_2; }
inline void set_s_GlyphMarshallingStruct_IN_2(GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* value)
{
___s_GlyphMarshallingStruct_IN_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_GlyphMarshallingStruct_IN_2), (void*)value);
}
inline static int32_t get_offset_of_s_GlyphMarshallingStruct_OUT_3() { return static_cast<int32_t>(offsetof(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields, ___s_GlyphMarshallingStruct_OUT_3)); }
inline GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* get_s_GlyphMarshallingStruct_OUT_3() const { return ___s_GlyphMarshallingStruct_OUT_3; }
inline GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D** get_address_of_s_GlyphMarshallingStruct_OUT_3() { return &___s_GlyphMarshallingStruct_OUT_3; }
inline void set_s_GlyphMarshallingStruct_OUT_3(GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* value)
{
___s_GlyphMarshallingStruct_OUT_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_GlyphMarshallingStruct_OUT_3), (void*)value);
}
inline static int32_t get_offset_of_s_FreeGlyphRects_4() { return static_cast<int32_t>(offsetof(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields, ___s_FreeGlyphRects_4)); }
inline GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* get_s_FreeGlyphRects_4() const { return ___s_FreeGlyphRects_4; }
inline GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA** get_address_of_s_FreeGlyphRects_4() { return &___s_FreeGlyphRects_4; }
inline void set_s_FreeGlyphRects_4(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* value)
{
___s_FreeGlyphRects_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_FreeGlyphRects_4), (void*)value);
}
inline static int32_t get_offset_of_s_UsedGlyphRects_5() { return static_cast<int32_t>(offsetof(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields, ___s_UsedGlyphRects_5)); }
inline GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* get_s_UsedGlyphRects_5() const { return ___s_UsedGlyphRects_5; }
inline GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA** get_address_of_s_UsedGlyphRects_5() { return &___s_UsedGlyphRects_5; }
inline void set_s_UsedGlyphRects_5(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* value)
{
___s_UsedGlyphRects_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_UsedGlyphRects_5), (void*)value);
}
inline static int32_t get_offset_of_s_PairAdjustmentRecords_MarshallingArray_6() { return static_cast<int32_t>(offsetof(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields, ___s_PairAdjustmentRecords_MarshallingArray_6)); }
inline GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609* get_s_PairAdjustmentRecords_MarshallingArray_6() const { return ___s_PairAdjustmentRecords_MarshallingArray_6; }
inline GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609** get_address_of_s_PairAdjustmentRecords_MarshallingArray_6() { return &___s_PairAdjustmentRecords_MarshallingArray_6; }
inline void set_s_PairAdjustmentRecords_MarshallingArray_6(GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609* value)
{
___s_PairAdjustmentRecords_MarshallingArray_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_PairAdjustmentRecords_MarshallingArray_6), (void*)value);
}
inline static int32_t get_offset_of_s_GlyphLookupDictionary_7() { return static_cast<int32_t>(offsetof(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields, ___s_GlyphLookupDictionary_7)); }
inline Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE * get_s_GlyphLookupDictionary_7() const { return ___s_GlyphLookupDictionary_7; }
inline Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE ** get_address_of_s_GlyphLookupDictionary_7() { return &___s_GlyphLookupDictionary_7; }
inline void set_s_GlyphLookupDictionary_7(Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE * value)
{
___s_GlyphLookupDictionary_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_GlyphLookupDictionary_7), (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_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
{
};
// System.Boolean
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
{
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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
{
public:
public:
};
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
{
};
// UnityEngine.TextCore.FaceInfo
struct FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979
{
public:
// System.String UnityEngine.TextCore.FaceInfo::m_FamilyName
String_t* ___m_FamilyName_0;
// System.String UnityEngine.TextCore.FaceInfo::m_StyleName
String_t* ___m_StyleName_1;
// System.Int32 UnityEngine.TextCore.FaceInfo::m_PointSize
int32_t ___m_PointSize_2;
// System.Single UnityEngine.TextCore.FaceInfo::m_Scale
float ___m_Scale_3;
// System.Single UnityEngine.TextCore.FaceInfo::m_LineHeight
float ___m_LineHeight_4;
// System.Single UnityEngine.TextCore.FaceInfo::m_AscentLine
float ___m_AscentLine_5;
// System.Single UnityEngine.TextCore.FaceInfo::m_CapLine
float ___m_CapLine_6;
// System.Single UnityEngine.TextCore.FaceInfo::m_MeanLine
float ___m_MeanLine_7;
// System.Single UnityEngine.TextCore.FaceInfo::m_Baseline
float ___m_Baseline_8;
// System.Single UnityEngine.TextCore.FaceInfo::m_DescentLine
float ___m_DescentLine_9;
// System.Single UnityEngine.TextCore.FaceInfo::m_SuperscriptOffset
float ___m_SuperscriptOffset_10;
// System.Single UnityEngine.TextCore.FaceInfo::m_SuperscriptSize
float ___m_SuperscriptSize_11;
// System.Single UnityEngine.TextCore.FaceInfo::m_SubscriptOffset
float ___m_SubscriptOffset_12;
// System.Single UnityEngine.TextCore.FaceInfo::m_SubscriptSize
float ___m_SubscriptSize_13;
// System.Single UnityEngine.TextCore.FaceInfo::m_UnderlineOffset
float ___m_UnderlineOffset_14;
// System.Single UnityEngine.TextCore.FaceInfo::m_UnderlineThickness
float ___m_UnderlineThickness_15;
// System.Single UnityEngine.TextCore.FaceInfo::m_StrikethroughOffset
float ___m_StrikethroughOffset_16;
// System.Single UnityEngine.TextCore.FaceInfo::m_StrikethroughThickness
float ___m_StrikethroughThickness_17;
// System.Single UnityEngine.TextCore.FaceInfo::m_TabWidth
float ___m_TabWidth_18;
public:
inline static int32_t get_offset_of_m_FamilyName_0() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_FamilyName_0)); }
inline String_t* get_m_FamilyName_0() const { return ___m_FamilyName_0; }
inline String_t** get_address_of_m_FamilyName_0() { return &___m_FamilyName_0; }
inline void set_m_FamilyName_0(String_t* value)
{
___m_FamilyName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FamilyName_0), (void*)value);
}
inline static int32_t get_offset_of_m_StyleName_1() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_StyleName_1)); }
inline String_t* get_m_StyleName_1() const { return ___m_StyleName_1; }
inline String_t** get_address_of_m_StyleName_1() { return &___m_StyleName_1; }
inline void set_m_StyleName_1(String_t* value)
{
___m_StyleName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_StyleName_1), (void*)value);
}
inline static int32_t get_offset_of_m_PointSize_2() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_PointSize_2)); }
inline int32_t get_m_PointSize_2() const { return ___m_PointSize_2; }
inline int32_t* get_address_of_m_PointSize_2() { return &___m_PointSize_2; }
inline void set_m_PointSize_2(int32_t value)
{
___m_PointSize_2 = value;
}
inline static int32_t get_offset_of_m_Scale_3() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_Scale_3)); }
inline float get_m_Scale_3() const { return ___m_Scale_3; }
inline float* get_address_of_m_Scale_3() { return &___m_Scale_3; }
inline void set_m_Scale_3(float value)
{
___m_Scale_3 = value;
}
inline static int32_t get_offset_of_m_LineHeight_4() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_LineHeight_4)); }
inline float get_m_LineHeight_4() const { return ___m_LineHeight_4; }
inline float* get_address_of_m_LineHeight_4() { return &___m_LineHeight_4; }
inline void set_m_LineHeight_4(float value)
{
___m_LineHeight_4 = value;
}
inline static int32_t get_offset_of_m_AscentLine_5() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_AscentLine_5)); }
inline float get_m_AscentLine_5() const { return ___m_AscentLine_5; }
inline float* get_address_of_m_AscentLine_5() { return &___m_AscentLine_5; }
inline void set_m_AscentLine_5(float value)
{
___m_AscentLine_5 = value;
}
inline static int32_t get_offset_of_m_CapLine_6() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_CapLine_6)); }
inline float get_m_CapLine_6() const { return ___m_CapLine_6; }
inline float* get_address_of_m_CapLine_6() { return &___m_CapLine_6; }
inline void set_m_CapLine_6(float value)
{
___m_CapLine_6 = value;
}
inline static int32_t get_offset_of_m_MeanLine_7() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_MeanLine_7)); }
inline float get_m_MeanLine_7() const { return ___m_MeanLine_7; }
inline float* get_address_of_m_MeanLine_7() { return &___m_MeanLine_7; }
inline void set_m_MeanLine_7(float value)
{
___m_MeanLine_7 = value;
}
inline static int32_t get_offset_of_m_Baseline_8() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_Baseline_8)); }
inline float get_m_Baseline_8() const { return ___m_Baseline_8; }
inline float* get_address_of_m_Baseline_8() { return &___m_Baseline_8; }
inline void set_m_Baseline_8(float value)
{
___m_Baseline_8 = value;
}
inline static int32_t get_offset_of_m_DescentLine_9() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_DescentLine_9)); }
inline float get_m_DescentLine_9() const { return ___m_DescentLine_9; }
inline float* get_address_of_m_DescentLine_9() { return &___m_DescentLine_9; }
inline void set_m_DescentLine_9(float value)
{
___m_DescentLine_9 = value;
}
inline static int32_t get_offset_of_m_SuperscriptOffset_10() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_SuperscriptOffset_10)); }
inline float get_m_SuperscriptOffset_10() const { return ___m_SuperscriptOffset_10; }
inline float* get_address_of_m_SuperscriptOffset_10() { return &___m_SuperscriptOffset_10; }
inline void set_m_SuperscriptOffset_10(float value)
{
___m_SuperscriptOffset_10 = value;
}
inline static int32_t get_offset_of_m_SuperscriptSize_11() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_SuperscriptSize_11)); }
inline float get_m_SuperscriptSize_11() const { return ___m_SuperscriptSize_11; }
inline float* get_address_of_m_SuperscriptSize_11() { return &___m_SuperscriptSize_11; }
inline void set_m_SuperscriptSize_11(float value)
{
___m_SuperscriptSize_11 = value;
}
inline static int32_t get_offset_of_m_SubscriptOffset_12() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_SubscriptOffset_12)); }
inline float get_m_SubscriptOffset_12() const { return ___m_SubscriptOffset_12; }
inline float* get_address_of_m_SubscriptOffset_12() { return &___m_SubscriptOffset_12; }
inline void set_m_SubscriptOffset_12(float value)
{
___m_SubscriptOffset_12 = value;
}
inline static int32_t get_offset_of_m_SubscriptSize_13() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_SubscriptSize_13)); }
inline float get_m_SubscriptSize_13() const { return ___m_SubscriptSize_13; }
inline float* get_address_of_m_SubscriptSize_13() { return &___m_SubscriptSize_13; }
inline void set_m_SubscriptSize_13(float value)
{
___m_SubscriptSize_13 = value;
}
inline static int32_t get_offset_of_m_UnderlineOffset_14() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_UnderlineOffset_14)); }
inline float get_m_UnderlineOffset_14() const { return ___m_UnderlineOffset_14; }
inline float* get_address_of_m_UnderlineOffset_14() { return &___m_UnderlineOffset_14; }
inline void set_m_UnderlineOffset_14(float value)
{
___m_UnderlineOffset_14 = value;
}
inline static int32_t get_offset_of_m_UnderlineThickness_15() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_UnderlineThickness_15)); }
inline float get_m_UnderlineThickness_15() const { return ___m_UnderlineThickness_15; }
inline float* get_address_of_m_UnderlineThickness_15() { return &___m_UnderlineThickness_15; }
inline void set_m_UnderlineThickness_15(float value)
{
___m_UnderlineThickness_15 = value;
}
inline static int32_t get_offset_of_m_StrikethroughOffset_16() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_StrikethroughOffset_16)); }
inline float get_m_StrikethroughOffset_16() const { return ___m_StrikethroughOffset_16; }
inline float* get_address_of_m_StrikethroughOffset_16() { return &___m_StrikethroughOffset_16; }
inline void set_m_StrikethroughOffset_16(float value)
{
___m_StrikethroughOffset_16 = value;
}
inline static int32_t get_offset_of_m_StrikethroughThickness_17() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_StrikethroughThickness_17)); }
inline float get_m_StrikethroughThickness_17() const { return ___m_StrikethroughThickness_17; }
inline float* get_address_of_m_StrikethroughThickness_17() { return &___m_StrikethroughThickness_17; }
inline void set_m_StrikethroughThickness_17(float value)
{
___m_StrikethroughThickness_17 = value;
}
inline static int32_t get_offset_of_m_TabWidth_18() { return static_cast<int32_t>(offsetof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979, ___m_TabWidth_18)); }
inline float get_m_TabWidth_18() const { return ___m_TabWidth_18; }
inline float* get_address_of_m_TabWidth_18() { return &___m_TabWidth_18; }
inline void set_m_TabWidth_18(float value)
{
___m_TabWidth_18 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.TextCore.FaceInfo
struct FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshaled_pinvoke
{
char* ___m_FamilyName_0;
char* ___m_StyleName_1;
int32_t ___m_PointSize_2;
float ___m_Scale_3;
float ___m_LineHeight_4;
float ___m_AscentLine_5;
float ___m_CapLine_6;
float ___m_MeanLine_7;
float ___m_Baseline_8;
float ___m_DescentLine_9;
float ___m_SuperscriptOffset_10;
float ___m_SuperscriptSize_11;
float ___m_SubscriptOffset_12;
float ___m_SubscriptSize_13;
float ___m_UnderlineOffset_14;
float ___m_UnderlineThickness_15;
float ___m_StrikethroughOffset_16;
float ___m_StrikethroughThickness_17;
float ___m_TabWidth_18;
};
// Native definition for COM marshalling of UnityEngine.TextCore.FaceInfo
struct FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshaled_com
{
Il2CppChar* ___m_FamilyName_0;
Il2CppChar* ___m_StyleName_1;
int32_t ___m_PointSize_2;
float ___m_Scale_3;
float ___m_LineHeight_4;
float ___m_AscentLine_5;
float ___m_CapLine_6;
float ___m_MeanLine_7;
float ___m_Baseline_8;
float ___m_DescentLine_9;
float ___m_SuperscriptOffset_10;
float ___m_SuperscriptSize_11;
float ___m_SubscriptOffset_12;
float ___m_SubscriptSize_13;
float ___m_UnderlineOffset_14;
float ___m_UnderlineThickness_15;
float ___m_StrikethroughOffset_16;
float ___m_StrikethroughThickness_17;
float ___m_TabWidth_18;
};
// UnityEngine.TextCore.LowLevel.FontEngineUtilities
struct FontEngineUtilities_tFA15A550712D3C90200C37F9DEAA234D04F47B8D
{
public:
union
{
struct
{
};
uint8_t FontEngineUtilities_tFA15A550712D3C90200C37F9DEAA234D04F47B8D__padding[1];
};
public:
};
// UnityEngine.TextCore.GlyphMetrics
struct GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B
{
public:
// System.Single UnityEngine.TextCore.GlyphMetrics::m_Width
float ___m_Width_0;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_Height
float ___m_Height_1;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_HorizontalBearingX
float ___m_HorizontalBearingX_2;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_HorizontalBearingY
float ___m_HorizontalBearingY_3;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_HorizontalAdvance
float ___m_HorizontalAdvance_4;
public:
inline static int32_t get_offset_of_m_Width_0() { return static_cast<int32_t>(offsetof(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B, ___m_Width_0)); }
inline float get_m_Width_0() const { return ___m_Width_0; }
inline float* get_address_of_m_Width_0() { return &___m_Width_0; }
inline void set_m_Width_0(float value)
{
___m_Width_0 = value;
}
inline static int32_t get_offset_of_m_Height_1() { return static_cast<int32_t>(offsetof(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B, ___m_Height_1)); }
inline float get_m_Height_1() const { return ___m_Height_1; }
inline float* get_address_of_m_Height_1() { return &___m_Height_1; }
inline void set_m_Height_1(float value)
{
___m_Height_1 = value;
}
inline static int32_t get_offset_of_m_HorizontalBearingX_2() { return static_cast<int32_t>(offsetof(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B, ___m_HorizontalBearingX_2)); }
inline float get_m_HorizontalBearingX_2() const { return ___m_HorizontalBearingX_2; }
inline float* get_address_of_m_HorizontalBearingX_2() { return &___m_HorizontalBearingX_2; }
inline void set_m_HorizontalBearingX_2(float value)
{
___m_HorizontalBearingX_2 = value;
}
inline static int32_t get_offset_of_m_HorizontalBearingY_3() { return static_cast<int32_t>(offsetof(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B, ___m_HorizontalBearingY_3)); }
inline float get_m_HorizontalBearingY_3() const { return ___m_HorizontalBearingY_3; }
inline float* get_address_of_m_HorizontalBearingY_3() { return &___m_HorizontalBearingY_3; }
inline void set_m_HorizontalBearingY_3(float value)
{
___m_HorizontalBearingY_3 = value;
}
inline static int32_t get_offset_of_m_HorizontalAdvance_4() { return static_cast<int32_t>(offsetof(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B, ___m_HorizontalAdvance_4)); }
inline float get_m_HorizontalAdvance_4() const { return ___m_HorizontalAdvance_4; }
inline float* get_address_of_m_HorizontalAdvance_4() { return &___m_HorizontalAdvance_4; }
inline void set_m_HorizontalAdvance_4(float value)
{
___m_HorizontalAdvance_4 = value;
}
};
// UnityEngine.TextCore.GlyphRect
struct GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D
{
public:
// System.Int32 UnityEngine.TextCore.GlyphRect::m_X
int32_t ___m_X_0;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Y
int32_t ___m_Y_1;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Width
int32_t ___m_Width_2;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Height
int32_t ___m_Height_3;
public:
inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D, ___m_X_0)); }
inline int32_t get_m_X_0() const { return ___m_X_0; }
inline int32_t* get_address_of_m_X_0() { return &___m_X_0; }
inline void set_m_X_0(int32_t value)
{
___m_X_0 = value;
}
inline static int32_t get_offset_of_m_Y_1() { return static_cast<int32_t>(offsetof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D, ___m_Y_1)); }
inline int32_t get_m_Y_1() const { return ___m_Y_1; }
inline int32_t* get_address_of_m_Y_1() { return &___m_Y_1; }
inline void set_m_Y_1(int32_t value)
{
___m_Y_1 = value;
}
inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D, ___m_Width_2)); }
inline int32_t get_m_Width_2() const { return ___m_Width_2; }
inline int32_t* get_address_of_m_Width_2() { return &___m_Width_2; }
inline void set_m_Width_2(int32_t value)
{
___m_Width_2 = value;
}
inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D, ___m_Height_3)); }
inline int32_t get_m_Height_3() const { return ___m_Height_3; }
inline int32_t* get_address_of_m_Height_3() { return &___m_Height_3; }
inline void set_m_Height_3(int32_t value)
{
___m_Height_3 = value;
}
};
struct GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_StaticFields
{
public:
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.GlyphRect::s_ZeroGlyphRect
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___s_ZeroGlyphRect_4;
public:
inline static int32_t get_offset_of_s_ZeroGlyphRect_4() { return static_cast<int32_t>(offsetof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_StaticFields, ___s_ZeroGlyphRect_4)); }
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D get_s_ZeroGlyphRect_4() const { return ___s_ZeroGlyphRect_4; }
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * get_address_of_s_ZeroGlyphRect_4() { return &___s_ZeroGlyphRect_4; }
inline void set_s_ZeroGlyphRect_4(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D value)
{
___s_ZeroGlyphRect_4 = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphValueRecord
struct GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3
{
public:
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_XPlacement
float ___m_XPlacement_0;
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_YPlacement
float ___m_YPlacement_1;
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_XAdvance
float ___m_XAdvance_2;
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_YAdvance
float ___m_YAdvance_3;
public:
inline static int32_t get_offset_of_m_XPlacement_0() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3, ___m_XPlacement_0)); }
inline float get_m_XPlacement_0() const { return ___m_XPlacement_0; }
inline float* get_address_of_m_XPlacement_0() { return &___m_XPlacement_0; }
inline void set_m_XPlacement_0(float value)
{
___m_XPlacement_0 = value;
}
inline static int32_t get_offset_of_m_YPlacement_1() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3, ___m_YPlacement_1)); }
inline float get_m_YPlacement_1() const { return ___m_YPlacement_1; }
inline float* get_address_of_m_YPlacement_1() { return &___m_YPlacement_1; }
inline void set_m_YPlacement_1(float value)
{
___m_YPlacement_1 = value;
}
inline static int32_t get_offset_of_m_XAdvance_2() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3, ___m_XAdvance_2)); }
inline float get_m_XAdvance_2() const { return ___m_XAdvance_2; }
inline float* get_address_of_m_XAdvance_2() { return &___m_XAdvance_2; }
inline void set_m_XAdvance_2(float value)
{
___m_XAdvance_2 = value;
}
inline static int32_t get_offset_of_m_YAdvance_3() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3, ___m_YAdvance_3)); }
inline float get_m_YAdvance_3() const { return ___m_YAdvance_3; }
inline float* get_address_of_m_YAdvance_3() { return &___m_YAdvance_3; }
inline void set_m_YAdvance_3(float value)
{
___m_YAdvance_3 = value;
}
};
// System.Int32
struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
{
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_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___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.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_tE07797BA3C98D4CA9B5A19413C19A76688AB899E
{
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_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___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_tE60352A06233E4E69DD198BCC67142159F686B15
{
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_tE60352A06233E4E69DD198BCC67142159F686B15, ___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.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * 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_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* 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_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// UnityEngine.TextCore.LowLevel.FontEngineError
struct FontEngineError_t2202C4EC984B214495C9B7742BF13626DA63AE43
{
public:
// System.Int32 UnityEngine.TextCore.LowLevel.FontEngineError::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontEngineError_t2202C4EC984B214495C9B7742BF13626DA63AE43, ___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.TextCore.LowLevel.FontFeatureLookupFlags
struct FontFeatureLookupFlags_t37E41419FC68819F0CA4BD748675CE571DEA2781
{
public:
// System.Int32 UnityEngine.TextCore.LowLevel.FontFeatureLookupFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontFeatureLookupFlags_t37E41419FC68819F0CA4BD748675CE571DEA2781, ___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.TextCore.Glyph
struct Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 : public RuntimeObject
{
public:
// System.UInt32 UnityEngine.TextCore.Glyph::m_Index
uint32_t ___m_Index_0;
// UnityEngine.TextCore.GlyphMetrics UnityEngine.TextCore.Glyph::m_Metrics
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B ___m_Metrics_1;
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.Glyph::m_GlyphRect
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___m_GlyphRect_2;
// System.Single UnityEngine.TextCore.Glyph::m_Scale
float ___m_Scale_3;
// System.Int32 UnityEngine.TextCore.Glyph::m_AtlasIndex
int32_t ___m_AtlasIndex_4;
public:
inline static int32_t get_offset_of_m_Index_0() { return static_cast<int32_t>(offsetof(Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1, ___m_Index_0)); }
inline uint32_t get_m_Index_0() const { return ___m_Index_0; }
inline uint32_t* get_address_of_m_Index_0() { return &___m_Index_0; }
inline void set_m_Index_0(uint32_t value)
{
___m_Index_0 = value;
}
inline static int32_t get_offset_of_m_Metrics_1() { return static_cast<int32_t>(offsetof(Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1, ___m_Metrics_1)); }
inline GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B get_m_Metrics_1() const { return ___m_Metrics_1; }
inline GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * get_address_of_m_Metrics_1() { return &___m_Metrics_1; }
inline void set_m_Metrics_1(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B value)
{
___m_Metrics_1 = value;
}
inline static int32_t get_offset_of_m_GlyphRect_2() { return static_cast<int32_t>(offsetof(Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1, ___m_GlyphRect_2)); }
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D get_m_GlyphRect_2() const { return ___m_GlyphRect_2; }
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * get_address_of_m_GlyphRect_2() { return &___m_GlyphRect_2; }
inline void set_m_GlyphRect_2(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D value)
{
___m_GlyphRect_2 = value;
}
inline static int32_t get_offset_of_m_Scale_3() { return static_cast<int32_t>(offsetof(Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1, ___m_Scale_3)); }
inline float get_m_Scale_3() const { return ___m_Scale_3; }
inline float* get_address_of_m_Scale_3() { return &___m_Scale_3; }
inline void set_m_Scale_3(float value)
{
___m_Scale_3 = value;
}
inline static int32_t get_offset_of_m_AtlasIndex_4() { return static_cast<int32_t>(offsetof(Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1, ___m_AtlasIndex_4)); }
inline int32_t get_m_AtlasIndex_4() const { return ___m_AtlasIndex_4; }
inline int32_t* get_address_of_m_AtlasIndex_4() { return &___m_AtlasIndex_4; }
inline void set_m_AtlasIndex_4(int32_t value)
{
___m_AtlasIndex_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.TextCore.Glyph
struct Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshaled_pinvoke
{
uint32_t ___m_Index_0;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B ___m_Metrics_1;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___m_GlyphRect_2;
float ___m_Scale_3;
int32_t ___m_AtlasIndex_4;
};
// Native definition for COM marshalling of UnityEngine.TextCore.Glyph
struct Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshaled_com
{
uint32_t ___m_Index_0;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B ___m_Metrics_1;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___m_GlyphRect_2;
float ___m_Scale_3;
int32_t ___m_AtlasIndex_4;
};
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord
struct GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA
{
public:
// System.UInt32 UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord::m_GlyphIndex
uint32_t ___m_GlyphIndex_0;
// UnityEngine.TextCore.LowLevel.GlyphValueRecord UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord::m_GlyphValueRecord
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 ___m_GlyphValueRecord_1;
public:
inline static int32_t get_offset_of_m_GlyphIndex_0() { return static_cast<int32_t>(offsetof(GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA, ___m_GlyphIndex_0)); }
inline uint32_t get_m_GlyphIndex_0() const { return ___m_GlyphIndex_0; }
inline uint32_t* get_address_of_m_GlyphIndex_0() { return &___m_GlyphIndex_0; }
inline void set_m_GlyphIndex_0(uint32_t value)
{
___m_GlyphIndex_0 = value;
}
inline static int32_t get_offset_of_m_GlyphValueRecord_1() { return static_cast<int32_t>(offsetof(GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA, ___m_GlyphValueRecord_1)); }
inline GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 get_m_GlyphValueRecord_1() const { return ___m_GlyphValueRecord_1; }
inline GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * get_address_of_m_GlyphValueRecord_1() { return &___m_GlyphValueRecord_1; }
inline void set_m_GlyphValueRecord_1(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 value)
{
___m_GlyphValueRecord_1 = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphLoadFlags
struct GlyphLoadFlags_t4F6D16E7D35F02D6D5F6A61CC1FE6F2D37BA52E1
{
public:
// System.Int32 UnityEngine.TextCore.LowLevel.GlyphLoadFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GlyphLoadFlags_t4F6D16E7D35F02D6D5F6A61CC1FE6F2D37BA52E1, ___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.TextCore.LowLevel.GlyphMarshallingStruct
struct GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19
{
public:
// System.UInt32 UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::index
uint32_t ___index_0;
// UnityEngine.TextCore.GlyphMetrics UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::metrics
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B ___metrics_1;
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::glyphRect
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___glyphRect_2;
// System.Single UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::scale
float ___scale_3;
// System.Int32 UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::atlasIndex
int32_t ___atlasIndex_4;
public:
inline static int32_t get_offset_of_index_0() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19, ___index_0)); }
inline uint32_t get_index_0() const { return ___index_0; }
inline uint32_t* get_address_of_index_0() { return &___index_0; }
inline void set_index_0(uint32_t value)
{
___index_0 = value;
}
inline static int32_t get_offset_of_metrics_1() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19, ___metrics_1)); }
inline GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B get_metrics_1() const { return ___metrics_1; }
inline GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * get_address_of_metrics_1() { return &___metrics_1; }
inline void set_metrics_1(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B value)
{
___metrics_1 = value;
}
inline static int32_t get_offset_of_glyphRect_2() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19, ___glyphRect_2)); }
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D get_glyphRect_2() const { return ___glyphRect_2; }
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * get_address_of_glyphRect_2() { return &___glyphRect_2; }
inline void set_glyphRect_2(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D value)
{
___glyphRect_2 = value;
}
inline static int32_t get_offset_of_scale_3() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19, ___scale_3)); }
inline float get_scale_3() const { return ___scale_3; }
inline float* get_address_of_scale_3() { return &___scale_3; }
inline void set_scale_3(float value)
{
___scale_3 = value;
}
inline static int32_t get_offset_of_atlasIndex_4() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19, ___atlasIndex_4)); }
inline int32_t get_atlasIndex_4() const { return ___atlasIndex_4; }
inline int32_t* get_address_of_atlasIndex_4() { return &___atlasIndex_4; }
inline void set_atlasIndex_4(int32_t value)
{
___atlasIndex_4 = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphPackingMode
struct GlyphPackingMode_tA3FDD5F4AE57836F61A43B17443DCE931CE6B292
{
public:
// System.Int32 UnityEngine.TextCore.LowLevel.GlyphPackingMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GlyphPackingMode_tA3FDD5F4AE57836F61A43B17443DCE931CE6B292, ___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.TextCore.LowLevel.GlyphRenderMode
struct GlyphRenderMode_t43D8B1ECDEC4836D7689CB73D0D6C1EF346F973C
{
public:
// System.Int32 UnityEngine.TextCore.LowLevel.GlyphRenderMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GlyphRenderMode_t43D8B1ECDEC4836D7689CB73D0D6C1EF346F973C, ___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.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : 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_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___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_tF2F3778131EFF286AF62B7B013A170F95A91571A_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_tF2F3778131EFF286AF62B7B013A170F95A91571A_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_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.Font
struct Font_tB53D3F362CB1A0B92307B362826F212AE2D2A6A9 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
// UnityEngine.Font/FontTextureRebuildCallback UnityEngine.Font::m_FontTextureRebuildCallback
FontTextureRebuildCallback_tBF11A511EBD8D237A1C5885D460B42A45DDBB2DB * ___m_FontTextureRebuildCallback_5;
public:
inline static int32_t get_offset_of_m_FontTextureRebuildCallback_5() { return static_cast<int32_t>(offsetof(Font_tB53D3F362CB1A0B92307B362826F212AE2D2A6A9, ___m_FontTextureRebuildCallback_5)); }
inline FontTextureRebuildCallback_tBF11A511EBD8D237A1C5885D460B42A45DDBB2DB * get_m_FontTextureRebuildCallback_5() const { return ___m_FontTextureRebuildCallback_5; }
inline FontTextureRebuildCallback_tBF11A511EBD8D237A1C5885D460B42A45DDBB2DB ** get_address_of_m_FontTextureRebuildCallback_5() { return &___m_FontTextureRebuildCallback_5; }
inline void set_m_FontTextureRebuildCallback_5(FontTextureRebuildCallback_tBF11A511EBD8D237A1C5885D460B42A45DDBB2DB * value)
{
___m_FontTextureRebuildCallback_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FontTextureRebuildCallback_5), (void*)value);
}
};
struct Font_tB53D3F362CB1A0B92307B362826F212AE2D2A6A9_StaticFields
{
public:
// System.Action`1<UnityEngine.Font> UnityEngine.Font::textureRebuilt
Action_1_tC07E78969BFFC97261F80F4C08915A046DFDD9C7 * ___textureRebuilt_4;
public:
inline static int32_t get_offset_of_textureRebuilt_4() { return static_cast<int32_t>(offsetof(Font_tB53D3F362CB1A0B92307B362826F212AE2D2A6A9_StaticFields, ___textureRebuilt_4)); }
inline Action_1_tC07E78969BFFC97261F80F4C08915A046DFDD9C7 * get_textureRebuilt_4() const { return ___textureRebuilt_4; }
inline Action_1_tC07E78969BFFC97261F80F4C08915A046DFDD9C7 ** get_address_of_textureRebuilt_4() { return &___textureRebuilt_4; }
inline void set_textureRebuilt_4(Action_1_tC07E78969BFFC97261F80F4C08915A046DFDD9C7 * value)
{
___textureRebuilt_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textureRebuilt_4), (void*)value);
}
};
// UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord
struct GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169
{
public:
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::m_FirstAdjustmentRecord
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA ___m_FirstAdjustmentRecord_0;
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::m_SecondAdjustmentRecord
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA ___m_SecondAdjustmentRecord_1;
// UnityEngine.TextCore.LowLevel.FontFeatureLookupFlags UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::m_FeatureLookupFlags
int32_t ___m_FeatureLookupFlags_2;
public:
inline static int32_t get_offset_of_m_FirstAdjustmentRecord_0() { return static_cast<int32_t>(offsetof(GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169, ___m_FirstAdjustmentRecord_0)); }
inline GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA get_m_FirstAdjustmentRecord_0() const { return ___m_FirstAdjustmentRecord_0; }
inline GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA * get_address_of_m_FirstAdjustmentRecord_0() { return &___m_FirstAdjustmentRecord_0; }
inline void set_m_FirstAdjustmentRecord_0(GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA value)
{
___m_FirstAdjustmentRecord_0 = value;
}
inline static int32_t get_offset_of_m_SecondAdjustmentRecord_1() { return static_cast<int32_t>(offsetof(GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169, ___m_SecondAdjustmentRecord_1)); }
inline GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA get_m_SecondAdjustmentRecord_1() const { return ___m_SecondAdjustmentRecord_1; }
inline GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA * get_address_of_m_SecondAdjustmentRecord_1() { return &___m_SecondAdjustmentRecord_1; }
inline void set_m_SecondAdjustmentRecord_1(GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA value)
{
___m_SecondAdjustmentRecord_1 = value;
}
inline static int32_t get_offset_of_m_FeatureLookupFlags_2() { return static_cast<int32_t>(offsetof(GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169, ___m_FeatureLookupFlags_2)); }
inline int32_t get_m_FeatureLookupFlags_2() const { return ___m_FeatureLookupFlags_2; }
inline int32_t* get_address_of_m_FeatureLookupFlags_2() { return &___m_FeatureLookupFlags_2; }
inline void set_m_FeatureLookupFlags_2(int32_t value)
{
___m_FeatureLookupFlags_2 = value;
}
};
// System.SystemException
struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t
{
public:
public:
};
// UnityEngine.Texture
struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE_StaticFields
{
public:
// System.Int32 UnityEngine.Texture::GenerateAllMips
int32_t ___GenerateAllMips_4;
public:
inline static int32_t get_offset_of_GenerateAllMips_4() { return static_cast<int32_t>(offsetof(Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE_StaticFields, ___GenerateAllMips_4)); }
inline int32_t get_GenerateAllMips_4() const { return ___GenerateAllMips_4; }
inline int32_t* get_address_of_GenerateAllMips_4() { return &___GenerateAllMips_4; }
inline void set_GenerateAllMips_4(int32_t value)
{
___GenerateAllMips_4 = value;
}
};
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
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_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___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.Texture2D
struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF : public Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// UnityEngine.TextCore.GlyphRect[]
struct GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA : public RuntimeArray
{
public:
ALIGN_FIELD (8) GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D m_Items[1];
public:
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D value)
{
m_Items[index] = value;
}
};
// UnityEngine.TextCore.Glyph[]
struct GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B : public RuntimeArray
{
public:
ALIGN_FIELD (8) Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * m_Items[1];
public:
inline Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.UInt32[]
struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint32_t m_Items[1];
public:
inline uint32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value)
{
m_Items[index] = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct[]
struct GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D : public RuntimeArray
{
public:
ALIGN_FIELD (8) GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 m_Items[1];
public:
inline GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 value)
{
m_Items[index] = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord[]
struct GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 m_Items[1];
public:
inline GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 value)
{
m_Items[index] = value;
}
};
// System.Int32 System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_gshared_inline (List_1_tE870449A6BC21548542BC92F18B284004FA8668A * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>::get_Item(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_gshared_inline (List_1_tE870449A6BC21548542BC92F18B284004FA8668A * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE_gshared (List_1_tE870449A6BC21548542BC92F18B284004FA8668A * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>::Add(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F_gshared (List_1_tE870449A6BC21548542BC92F18B284004FA8668A * __this, GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___item0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.UInt32>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m70BC2BBCAA532A1588DB59CA7E556F541F32621D_gshared_inline (List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<System.UInt32>::get_Item(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t List_1_get_Item_m31E439898C27BC917E851D5219B3EC4E53618ADE_gshared_inline (List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.LowLevel.FontEngine::SetMarshallingArraySize<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>(T[]&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169_mEDCA1FCB26A509EEB1E1FDB5031380E479AC007C_gshared (GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609** ___marshallingArray0, int32_t ___recordCount1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.UInt32,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5D54E695939D13E41566390833F4B0DB613D4E27_gshared (Dictionary_2_t32479D928C553725424938B11A68D3CD8069EA75 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_familyName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_familyName_mF2284C683441750136664CE2F54A6A1B8D025BCF (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_styleName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_styleName_m2EA494E818600812D1EF63E1B861D930D72DDB2F (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.FaceInfo::get_pointSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FaceInfo_get_pointSize_m3C6775E1AE5F27EAAB93CC84480B14AFBDB5E330 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_pointSize(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_pointSize_m26A4A24116D162BB182959D46AB2FA6576A84CF9 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_scale()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_scale_mA059FCEE1F13BBDF846AB8D8B8EDA468F4FCD2A4 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_scale(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_scale_mA870178A90FC90A4E7D7149972CF190112244D9C (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_lineHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_lineHeight_m4BC0162351D2C7E607ECDF93534DAF0169AAEFE5 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_lineHeight(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_lineHeight_mF771EE64A254D4ED012070BDC94B06545668D347 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_ascentLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_ascentLine_m69928E2E998FA9441C7628BF7F8D9E888470D983 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_ascentLine(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_ascentLine_m510C3CF1B961D9BEDD79A4BAA7D65742C33AAD06 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_capLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_capLine_m16556D45E8441052D15DAE83CDB3FC31635BE0A7 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_capLine(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_capLine_m6FB88B8953008824E84DBA88B3896DD98A1E8926 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_meanLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_meanLine_m10957577CE99FF794523FA34E4ED873B4888A11D (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_meanLine(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_meanLine_m9118E1C37F756267BF93CE1E94C880FACB70E2A2 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_baseline()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_baseline_m7EB9429D8D329E5DA5DB890CEF02A6C015C056D6 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_baseline(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_baseline_m83DA240FEADBE11609EB11B79AC9FE6165ABBAC7 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_descentLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_descentLine_m0AEF0D85997836B841605DCE178ABA42A92C6EFA (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_descentLine(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_descentLine_m91AB76A124FE9E536BD72785512B2C623BA2B067 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_superscriptOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_superscriptOffset_mAF8D37F78A79780652BAE40384F0C4DED8350769 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_superscriptOffset(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_superscriptOffset_mE0422507D4C2DE3F2CFF7286F90462675741D15E (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_superscriptSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_superscriptSize_m7FBEC1B0C97A7DC9D581AF9ADBDDCF14F7565F1A (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_superscriptSize(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_superscriptSize_mCDE84F4EA47D69B7D783FE62DA78656BBC17C07E (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_subscriptOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_subscriptOffset_mD3F7F2F5F93364977E3F81E9B693D5CDB1419088 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_subscriptOffset(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_subscriptOffset_mCF79D815311C70E3E8CC2BC241FEFE39CC992A39 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_subscriptSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_subscriptSize_mEC9AEAD24A51AB19FFCC09AE919EF656ED2C6413 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_subscriptSize(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_subscriptSize_m61497C0D29FE50D498648DEC0FAADA9ED151387A (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_underlineOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_underlineOffset_m0F2900E06388C697807D43285BD4979E9D0BDA50 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_underlineOffset(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_underlineOffset_mBE89D25E848FAF83FB750D95A93F6C051D798B54 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_underlineThickness()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_underlineThickness_m07A6016172DE8DC1514CA780EBB80C32FA209F28 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_underlineThickness(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_underlineThickness_m86B440DB7CBDB6C588FBC03990B980A715726059 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_strikethroughOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_strikethroughOffset_m705C7A75FFA7E324582D6A1CC404ED4C8E8417EB (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_strikethroughOffset(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_strikethroughOffset_m9ACD0A24A8EC5FEB90596BA43E8E8D8FF7EA0623 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_strikethroughThickness(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_strikethroughThickness_mE26FAFBC6C984F88F68F7507CFE8AFB28E1932E7 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.FaceInfo::get_tabWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_tabWidth_mFBE94B2FBBB301B0FC1011D49A96032A0EE1A588 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.FaceInfo::set_tabWidth(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_tabWidth_mE024C95E768A214E3C85781753658B437F4B6B54 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.LowLevel.FontEngine::InitializeFontEngine_Internal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_InitializeFontEngine_Internal_m50E925BB9BE850ADB0611C2707FCECF3FB728C71 (const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.LowLevel.FontEngine::LoadFontFace_With_Size_FromFont_Internal(UnityEngine.Font,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_With_Size_FromFont_Internal_m2904823B237D890C9AC817A13098274D7DEC4FA7 (Font_tB53D3F362CB1A0B92307B362826F212AE2D2A6A9 * ___font0, int32_t ___pointSize1, const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.LowLevel.FontEngine::GetFaceInfo_Internal(UnityEngine.TextCore.FaceInfo&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_GetFaceInfo_Internal_m86BF1FCC26761DEB15EBC252943F10690612F6CA (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * ___faceInfo0, const RuntimeMethod* method);
// System.Boolean UnityEngine.TextCore.LowLevel.FontEngine::TryGetGlyphWithUnicodeValue_Internal(System.UInt32,UnityEngine.TextCore.LowLevel.GlyphLoadFlags,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetGlyphWithUnicodeValue_Internal_m4DDE3BF8F78CEDB763D821454B89997BB9BA276C (uint32_t ___unicode0, int32_t ___loadFlags1, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 * ___glyphStruct2, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.Glyph::.ctor(UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph__ctor_m926A82734800BFA828FFB469B956F563FF0F1994 (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 ___glyphStruct0, const RuntimeMethod* method);
// System.Boolean UnityEngine.TextCore.LowLevel.FontEngine::TryGetGlyphWithIndexValue_Internal(System.UInt32,UnityEngine.TextCore.LowLevel.GlyphLoadFlags,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetGlyphWithIndexValue_Internal_mF1CB9EABC97E1A1372A23297EAFBE7EAB5A6313A (uint32_t ___glyphIndex0, int32_t ___loadFlags1, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 * ___glyphStruct2, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>::get_Count()
inline int32_t List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_inline (List_1_tE870449A6BC21548542BC92F18B284004FA8668A * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tE870449A6BC21548542BC92F18B284004FA8668A *, const RuntimeMethod*))List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_gshared_inline)(__this, method);
}
// System.Int32 UnityEngine.Mathf::NextPowerOfTwo(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mathf_NextPowerOfTwo_m89DB0674631948FE00FD5660B18D9E62CE85CAF5 (int32_t ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Mathf::Max(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mathf_Max_mAB2544BF70651EC36982F5F4EBD250AEE283335A (int32_t ___a0, int32_t ___b1, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>::get_Item(System.Int32)
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_inline (List_1_tE870449A6BC21548542BC92F18B284004FA8668A * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D (*) (List_1_tE870449A6BC21548542BC92F18B284004FA8668A *, int32_t, const RuntimeMethod*))List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_gshared_inline)(__this, ___index0, method);
}
// System.Boolean UnityEngine.TextCore.LowLevel.FontEngine::TryAddGlyphToTexture_Internal(System.UInt32,System.Int32,UnityEngine.TextCore.LowLevel.GlyphPackingMode,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.LowLevel.GlyphRenderMode,UnityEngine.Texture2D,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryAddGlyphToTexture_Internal_m1A0E3323EADB617657BF97F660649C6FDD1B14B7 (uint32_t ___glyphIndex0, int32_t ___padding1, int32_t ___packingMode2, GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ___freeGlyphRects3, int32_t* ___freeGlyphRectCount4, GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ___usedGlyphRects5, int32_t* ___usedGlyphRectCount6, int32_t ___renderMode7, Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___texture8, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 * ___glyph9, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>::Clear()
inline void List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE (List_1_tE870449A6BC21548542BC92F18B284004FA8668A * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tE870449A6BC21548542BC92F18B284004FA8668A *, const RuntimeMethod*))List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>::Add(!0)
inline void List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F (List_1_tE870449A6BC21548542BC92F18B284004FA8668A * __this, GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tE870449A6BC21548542BC92F18B284004FA8668A *, GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D , const RuntimeMethod*))List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F_gshared)(__this, ___item0, method);
}
// System.Void UnityEngine.Profiling.Profiler::BeginSample(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Profiler_BeginSample_m72E4BD9503BC991BAFAED992FF1CA4504C741865_inline (String_t* ___name0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.UInt32>::get_Count()
inline int32_t List_1_get_Count_m70BC2BBCAA532A1588DB59CA7E556F541F32621D_inline (List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 *, const RuntimeMethod*))List_1_get_Count_m70BC2BBCAA532A1588DB59CA7E556F541F32621D_gshared_inline)(__this, method);
}
// System.Void UnityEngine.Profiling.Profiler::EndSample()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Profiler_EndSample_m78C76E709113E225D47687E26EA320E4FC548B71 (const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.LowLevel.FontEngineUtilities::MaxValue(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngineUtilities_MaxValue_m2EF659954522080160961E35BE6FDF1DD5C98FB7 (int32_t ___a0, int32_t ___b1, int32_t ___c2, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<System.UInt32>::get_Item(System.Int32)
inline uint32_t List_1_get_Item_m31E439898C27BC917E851D5219B3EC4E53618ADE_inline (List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( uint32_t (*) (List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 *, int32_t, const RuntimeMethod*))List_1_get_Item_m31E439898C27BC917E851D5219B3EC4E53618ADE_gshared_inline)(__this, ___index0, method);
}
// System.Boolean UnityEngine.TextCore.LowLevel.FontEngine::TryAddGlyphsToTexture_Internal(System.UInt32[],System.Int32,UnityEngine.TextCore.LowLevel.GlyphPackingMode,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.LowLevel.GlyphRenderMode,UnityEngine.Texture2D,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct[],System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryAddGlyphsToTexture_Internal_mB0FE279387211C00BF9E5891C39462CD6F159CE8 (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___glyphIndex0, int32_t ___padding1, int32_t ___packingMode2, GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ___freeGlyphRects3, int32_t* ___freeGlyphRectCount4, GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ___usedGlyphRects5, int32_t* ___usedGlyphRectCount6, int32_t ___renderMode7, Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___texture8, GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* ___glyphs9, int32_t* ___glyphCount10, const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.LowLevel.FontEngine::PopulatePairAdjustmentRecordMarshallingArray_from_GlyphIndexes(System.UInt32[],System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_GlyphIndexes_m209060A34247119B382FE9327CDDC85B8A04DEDF (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___glyphIndexes0, int32_t* ___recordCount1, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.LowLevel.FontEngine::SetMarshallingArraySize<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>(T[]&,System.Int32)
inline void FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169_mEDCA1FCB26A509EEB1E1FDB5031380E479AC007C (GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609** ___marshallingArray0, int32_t ___recordCount1, const RuntimeMethod* method)
{
(( void (*) (GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609**, int32_t, const RuntimeMethod*))FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169_mEDCA1FCB26A509EEB1E1FDB5031380E479AC007C_gshared)(___marshallingArray0, ___recordCount1, method);
}
// System.Int32 UnityEngine.TextCore.LowLevel.FontEngine::GetGlyphPairAdjustmentRecordsFromMarshallingArray(UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_GetGlyphPairAdjustmentRecordsFromMarshallingArray_m0B720E99C766368DA85190A049A4F70C5805DFD4 (GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609* ___glyphPairAdjustmentRecords0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.UInt32,UnityEngine.TextCore.Glyph>::.ctor()
inline void Dictionary_2__ctor_mA742BAFFA1D2C33D93731258D03686051DD22B98 (Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE *, const RuntimeMethod*))Dictionary_2__ctor_m5D54E695939D13E41566390833F4B0DB613D4E27_gshared)(__this, method);
}
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method);
// System.UInt32 UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord::get_glyphIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlyphAdjustmentRecord_get_glyphIndex_mCD420C739E19E446152534AFA80A6113C0DBCC55 (GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA * __this, const RuntimeMethod* method);
// UnityEngine.TextCore.LowLevel.GlyphValueRecord UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord::get_glyphValueRecord()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 GlyphAdjustmentRecord_get_glyphValueRecord_mAC27920271FB7166EE305BACE1D595CAA57872EE (GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA * __this, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.GlyphMetrics::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_width_m4E2BCD2B54F121478C1D23C43FB6E8C0EF71C70F (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.GlyphMetrics::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_height_m742B169DCF2892774ACEC4F25310CDC0C7F1D85F (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.GlyphMetrics::get_horizontalBearingX()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_horizontalBearingX_m8474B6C9DB0D4D36516FCAC03B6ECBDAF49247E0 (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.GlyphMetrics::get_horizontalBearingY()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_horizontalBearingY_m2C5A73B899AFF5F5F594F447160ADB6E0523C16A (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.GlyphMetrics::get_horizontalAdvance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_horizontalAdvance_mB204F2676223D5BEF5FEFF8969B159B39F1A617A (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.GlyphMetrics::.ctor(System.Single,System.Single,System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphMetrics__ctor_m6146EC37C12EF153771AEF9983A63B5EBAE0CEFB (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, float ___width0, float ___height1, float ___bearingX2, float ___bearingY3, float ___advance4, const RuntimeMethod* method);
// System.Int32 System.ValueType::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueType_GetHashCode_mE3FC55FA0D7099043434B9F8F0A4B30C8B63BFF4 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.GlyphMetrics::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphMetrics_GetHashCode_m4F7985D656AFB70AE746F9A2513D39D3DFF9CD73 (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, const RuntimeMethod* method);
// System.Boolean System.ValueType::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueType_Equals_mA46F77D37929939A917B1BF63B55071714034354 (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.TextCore.GlyphMetrics::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphMetrics_Equals_mCCF68C73B7AE05D97A0D4459384DABD8BEB1097F (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.TextCore.GlyphMetrics::Equals(UnityEngine.TextCore.GlyphMetrics)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphMetrics_Equals_m54C8D6CAD2653668377F5F7A9F78FD7C4F05E4A8 (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B ___other0, const RuntimeMethod* method);
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::get_firstAdjustmentRecord()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA GlyphPairAdjustmentRecord_get_firstAdjustmentRecord_m92BC7561227D482635EF8AB93B8F20808017FBF8 (GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 * __this, const RuntimeMethod* method);
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::get_secondAdjustmentRecord()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA GlyphPairAdjustmentRecord_get_secondAdjustmentRecord_m488CCBCB6802727334E2135E65EBB027A0A01EAD (GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.GlyphRect::get_x()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_x_m004398D85360A389BCCD4F8B38347C0555F86166 (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.GlyphRect::get_y()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_y_mBF2FC84CB7B201F30376B46390D37887B6AD6C20 (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.GlyphRect::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_width_m8B9FBFA897082BA8E5F71222E1AAAB8D4A345A41 (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.GlyphRect::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_height_m319E96AD96E2087C9C9F5A1DF883F06A4D04104F (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, const RuntimeMethod* method);
// System.Void UnityEngine.TextCore.GlyphRect::.ctor(System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphRect__ctor_m278B410AE9B6DE62FF8C2445B8F3C6051B45ED61 (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, int32_t ___x0, int32_t ___y1, int32_t ___width2, int32_t ___height3, const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.GlyphRect::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_GetHashCode_m6DC4515E8C489593A329B5EA66895BD8C25DF913 (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.TextCore.GlyphRect::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphRect_Equals_m7F1DB9A21E584BEF84C5F83E6DD290EF54D655C1 (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.TextCore.GlyphRect::Equals(UnityEngine.TextCore.GlyphRect)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphRect_Equals_mB9F911262F09BC42CD2A461D8692D1C3ECAFCDCE (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___other0, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::get_xPlacement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_xPlacement_mAC5902DE9EE01D98DE9FBC6DB3A8BA7CDC525D14 (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::get_yPlacement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_yPlacement_m624E2DA69CC5A21117EE275359F66AF88DFC7D2D (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::get_xAdvance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_xAdvance_m577D4D32490C42890C3F15230479D931B91BDED5 (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::get_yAdvance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_yAdvance_m9659978FFA9B58B6AA7DE30199E405CF642BA34F (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.TextCore.LowLevel.GlyphValueRecord::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphValueRecord_GetHashCode_m5700595527E17C02B923199180E8983105563A71 (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.TextCore.LowLevel.GlyphValueRecord::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphValueRecord_Equals_mB12EE7C56E781B2DAFF2DEA1AFFFA1EC4DCBA943 (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.TextCore.LowLevel.GlyphValueRecord::Equals(UnityEngine.TextCore.LowLevel.GlyphValueRecord)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphValueRecord_Equals_m716F55BA3DD7B7E97F3E35BE94A5922BE90FECF4 (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 ___other0, const RuntimeMethod* method);
// System.Void UnityEngine.Profiling.Profiler::ValidateArguments(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Profiler_ValidateArguments_mBD8BD2520B428CBAA924D27613F9F0BB5D9C4512_inline (String_t* ___name0, const RuntimeMethod* method);
// System.Void UnityEngine.Profiling.Profiler::BeginSampleImpl(System.String,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Profiler_BeginSampleImpl_mF1EE2C3EB23D01B3F9A25C43C8BC82BFC4F3B5A0 (String_t* ___name0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___targetObject1, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929 (const RuntimeMethod* method);
// System.Boolean System.String::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C (String_t* ___value0, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, String_t* ___paramName1, 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
// Conversion methods for marshalling of: UnityEngine.TextCore.FaceInfo
IL2CPP_EXTERN_C void FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshal_pinvoke(const FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979& unmarshaled, FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshaled_pinvoke& marshaled)
{
marshaled.___m_FamilyName_0 = il2cpp_codegen_marshal_string(unmarshaled.get_m_FamilyName_0());
marshaled.___m_StyleName_1 = il2cpp_codegen_marshal_string(unmarshaled.get_m_StyleName_1());
marshaled.___m_PointSize_2 = unmarshaled.get_m_PointSize_2();
marshaled.___m_Scale_3 = unmarshaled.get_m_Scale_3();
marshaled.___m_LineHeight_4 = unmarshaled.get_m_LineHeight_4();
marshaled.___m_AscentLine_5 = unmarshaled.get_m_AscentLine_5();
marshaled.___m_CapLine_6 = unmarshaled.get_m_CapLine_6();
marshaled.___m_MeanLine_7 = unmarshaled.get_m_MeanLine_7();
marshaled.___m_Baseline_8 = unmarshaled.get_m_Baseline_8();
marshaled.___m_DescentLine_9 = unmarshaled.get_m_DescentLine_9();
marshaled.___m_SuperscriptOffset_10 = unmarshaled.get_m_SuperscriptOffset_10();
marshaled.___m_SuperscriptSize_11 = unmarshaled.get_m_SuperscriptSize_11();
marshaled.___m_SubscriptOffset_12 = unmarshaled.get_m_SubscriptOffset_12();
marshaled.___m_SubscriptSize_13 = unmarshaled.get_m_SubscriptSize_13();
marshaled.___m_UnderlineOffset_14 = unmarshaled.get_m_UnderlineOffset_14();
marshaled.___m_UnderlineThickness_15 = unmarshaled.get_m_UnderlineThickness_15();
marshaled.___m_StrikethroughOffset_16 = unmarshaled.get_m_StrikethroughOffset_16();
marshaled.___m_StrikethroughThickness_17 = unmarshaled.get_m_StrikethroughThickness_17();
marshaled.___m_TabWidth_18 = unmarshaled.get_m_TabWidth_18();
}
IL2CPP_EXTERN_C void FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshal_pinvoke_back(const FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshaled_pinvoke& marshaled, FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979& unmarshaled)
{
unmarshaled.set_m_FamilyName_0(il2cpp_codegen_marshal_string_result(marshaled.___m_FamilyName_0));
unmarshaled.set_m_StyleName_1(il2cpp_codegen_marshal_string_result(marshaled.___m_StyleName_1));
int32_t unmarshaled_m_PointSize_temp_2 = 0;
unmarshaled_m_PointSize_temp_2 = marshaled.___m_PointSize_2;
unmarshaled.set_m_PointSize_2(unmarshaled_m_PointSize_temp_2);
float unmarshaled_m_Scale_temp_3 = 0.0f;
unmarshaled_m_Scale_temp_3 = marshaled.___m_Scale_3;
unmarshaled.set_m_Scale_3(unmarshaled_m_Scale_temp_3);
float unmarshaled_m_LineHeight_temp_4 = 0.0f;
unmarshaled_m_LineHeight_temp_4 = marshaled.___m_LineHeight_4;
unmarshaled.set_m_LineHeight_4(unmarshaled_m_LineHeight_temp_4);
float unmarshaled_m_AscentLine_temp_5 = 0.0f;
unmarshaled_m_AscentLine_temp_5 = marshaled.___m_AscentLine_5;
unmarshaled.set_m_AscentLine_5(unmarshaled_m_AscentLine_temp_5);
float unmarshaled_m_CapLine_temp_6 = 0.0f;
unmarshaled_m_CapLine_temp_6 = marshaled.___m_CapLine_6;
unmarshaled.set_m_CapLine_6(unmarshaled_m_CapLine_temp_6);
float unmarshaled_m_MeanLine_temp_7 = 0.0f;
unmarshaled_m_MeanLine_temp_7 = marshaled.___m_MeanLine_7;
unmarshaled.set_m_MeanLine_7(unmarshaled_m_MeanLine_temp_7);
float unmarshaled_m_Baseline_temp_8 = 0.0f;
unmarshaled_m_Baseline_temp_8 = marshaled.___m_Baseline_8;
unmarshaled.set_m_Baseline_8(unmarshaled_m_Baseline_temp_8);
float unmarshaled_m_DescentLine_temp_9 = 0.0f;
unmarshaled_m_DescentLine_temp_9 = marshaled.___m_DescentLine_9;
unmarshaled.set_m_DescentLine_9(unmarshaled_m_DescentLine_temp_9);
float unmarshaled_m_SuperscriptOffset_temp_10 = 0.0f;
unmarshaled_m_SuperscriptOffset_temp_10 = marshaled.___m_SuperscriptOffset_10;
unmarshaled.set_m_SuperscriptOffset_10(unmarshaled_m_SuperscriptOffset_temp_10);
float unmarshaled_m_SuperscriptSize_temp_11 = 0.0f;
unmarshaled_m_SuperscriptSize_temp_11 = marshaled.___m_SuperscriptSize_11;
unmarshaled.set_m_SuperscriptSize_11(unmarshaled_m_SuperscriptSize_temp_11);
float unmarshaled_m_SubscriptOffset_temp_12 = 0.0f;
unmarshaled_m_SubscriptOffset_temp_12 = marshaled.___m_SubscriptOffset_12;
unmarshaled.set_m_SubscriptOffset_12(unmarshaled_m_SubscriptOffset_temp_12);
float unmarshaled_m_SubscriptSize_temp_13 = 0.0f;
unmarshaled_m_SubscriptSize_temp_13 = marshaled.___m_SubscriptSize_13;
unmarshaled.set_m_SubscriptSize_13(unmarshaled_m_SubscriptSize_temp_13);
float unmarshaled_m_UnderlineOffset_temp_14 = 0.0f;
unmarshaled_m_UnderlineOffset_temp_14 = marshaled.___m_UnderlineOffset_14;
unmarshaled.set_m_UnderlineOffset_14(unmarshaled_m_UnderlineOffset_temp_14);
float unmarshaled_m_UnderlineThickness_temp_15 = 0.0f;
unmarshaled_m_UnderlineThickness_temp_15 = marshaled.___m_UnderlineThickness_15;
unmarshaled.set_m_UnderlineThickness_15(unmarshaled_m_UnderlineThickness_temp_15);
float unmarshaled_m_StrikethroughOffset_temp_16 = 0.0f;
unmarshaled_m_StrikethroughOffset_temp_16 = marshaled.___m_StrikethroughOffset_16;
unmarshaled.set_m_StrikethroughOffset_16(unmarshaled_m_StrikethroughOffset_temp_16);
float unmarshaled_m_StrikethroughThickness_temp_17 = 0.0f;
unmarshaled_m_StrikethroughThickness_temp_17 = marshaled.___m_StrikethroughThickness_17;
unmarshaled.set_m_StrikethroughThickness_17(unmarshaled_m_StrikethroughThickness_temp_17);
float unmarshaled_m_TabWidth_temp_18 = 0.0f;
unmarshaled_m_TabWidth_temp_18 = marshaled.___m_TabWidth_18;
unmarshaled.set_m_TabWidth_18(unmarshaled_m_TabWidth_temp_18);
}
// Conversion method for clean up from marshalling of: UnityEngine.TextCore.FaceInfo
IL2CPP_EXTERN_C void FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshal_pinvoke_cleanup(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshaled_pinvoke& marshaled)
{
il2cpp_codegen_marshal_free(marshaled.___m_FamilyName_0);
marshaled.___m_FamilyName_0 = NULL;
il2cpp_codegen_marshal_free(marshaled.___m_StyleName_1);
marshaled.___m_StyleName_1 = NULL;
}
// Conversion methods for marshalling of: UnityEngine.TextCore.FaceInfo
IL2CPP_EXTERN_C void FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshal_com(const FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979& unmarshaled, FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshaled_com& marshaled)
{
marshaled.___m_FamilyName_0 = il2cpp_codegen_marshal_bstring(unmarshaled.get_m_FamilyName_0());
marshaled.___m_StyleName_1 = il2cpp_codegen_marshal_bstring(unmarshaled.get_m_StyleName_1());
marshaled.___m_PointSize_2 = unmarshaled.get_m_PointSize_2();
marshaled.___m_Scale_3 = unmarshaled.get_m_Scale_3();
marshaled.___m_LineHeight_4 = unmarshaled.get_m_LineHeight_4();
marshaled.___m_AscentLine_5 = unmarshaled.get_m_AscentLine_5();
marshaled.___m_CapLine_6 = unmarshaled.get_m_CapLine_6();
marshaled.___m_MeanLine_7 = unmarshaled.get_m_MeanLine_7();
marshaled.___m_Baseline_8 = unmarshaled.get_m_Baseline_8();
marshaled.___m_DescentLine_9 = unmarshaled.get_m_DescentLine_9();
marshaled.___m_SuperscriptOffset_10 = unmarshaled.get_m_SuperscriptOffset_10();
marshaled.___m_SuperscriptSize_11 = unmarshaled.get_m_SuperscriptSize_11();
marshaled.___m_SubscriptOffset_12 = unmarshaled.get_m_SubscriptOffset_12();
marshaled.___m_SubscriptSize_13 = unmarshaled.get_m_SubscriptSize_13();
marshaled.___m_UnderlineOffset_14 = unmarshaled.get_m_UnderlineOffset_14();
marshaled.___m_UnderlineThickness_15 = unmarshaled.get_m_UnderlineThickness_15();
marshaled.___m_StrikethroughOffset_16 = unmarshaled.get_m_StrikethroughOffset_16();
marshaled.___m_StrikethroughThickness_17 = unmarshaled.get_m_StrikethroughThickness_17();
marshaled.___m_TabWidth_18 = unmarshaled.get_m_TabWidth_18();
}
IL2CPP_EXTERN_C void FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshal_com_back(const FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshaled_com& marshaled, FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979& unmarshaled)
{
unmarshaled.set_m_FamilyName_0(il2cpp_codegen_marshal_bstring_result(marshaled.___m_FamilyName_0));
unmarshaled.set_m_StyleName_1(il2cpp_codegen_marshal_bstring_result(marshaled.___m_StyleName_1));
int32_t unmarshaled_m_PointSize_temp_2 = 0;
unmarshaled_m_PointSize_temp_2 = marshaled.___m_PointSize_2;
unmarshaled.set_m_PointSize_2(unmarshaled_m_PointSize_temp_2);
float unmarshaled_m_Scale_temp_3 = 0.0f;
unmarshaled_m_Scale_temp_3 = marshaled.___m_Scale_3;
unmarshaled.set_m_Scale_3(unmarshaled_m_Scale_temp_3);
float unmarshaled_m_LineHeight_temp_4 = 0.0f;
unmarshaled_m_LineHeight_temp_4 = marshaled.___m_LineHeight_4;
unmarshaled.set_m_LineHeight_4(unmarshaled_m_LineHeight_temp_4);
float unmarshaled_m_AscentLine_temp_5 = 0.0f;
unmarshaled_m_AscentLine_temp_5 = marshaled.___m_AscentLine_5;
unmarshaled.set_m_AscentLine_5(unmarshaled_m_AscentLine_temp_5);
float unmarshaled_m_CapLine_temp_6 = 0.0f;
unmarshaled_m_CapLine_temp_6 = marshaled.___m_CapLine_6;
unmarshaled.set_m_CapLine_6(unmarshaled_m_CapLine_temp_6);
float unmarshaled_m_MeanLine_temp_7 = 0.0f;
unmarshaled_m_MeanLine_temp_7 = marshaled.___m_MeanLine_7;
unmarshaled.set_m_MeanLine_7(unmarshaled_m_MeanLine_temp_7);
float unmarshaled_m_Baseline_temp_8 = 0.0f;
unmarshaled_m_Baseline_temp_8 = marshaled.___m_Baseline_8;
unmarshaled.set_m_Baseline_8(unmarshaled_m_Baseline_temp_8);
float unmarshaled_m_DescentLine_temp_9 = 0.0f;
unmarshaled_m_DescentLine_temp_9 = marshaled.___m_DescentLine_9;
unmarshaled.set_m_DescentLine_9(unmarshaled_m_DescentLine_temp_9);
float unmarshaled_m_SuperscriptOffset_temp_10 = 0.0f;
unmarshaled_m_SuperscriptOffset_temp_10 = marshaled.___m_SuperscriptOffset_10;
unmarshaled.set_m_SuperscriptOffset_10(unmarshaled_m_SuperscriptOffset_temp_10);
float unmarshaled_m_SuperscriptSize_temp_11 = 0.0f;
unmarshaled_m_SuperscriptSize_temp_11 = marshaled.___m_SuperscriptSize_11;
unmarshaled.set_m_SuperscriptSize_11(unmarshaled_m_SuperscriptSize_temp_11);
float unmarshaled_m_SubscriptOffset_temp_12 = 0.0f;
unmarshaled_m_SubscriptOffset_temp_12 = marshaled.___m_SubscriptOffset_12;
unmarshaled.set_m_SubscriptOffset_12(unmarshaled_m_SubscriptOffset_temp_12);
float unmarshaled_m_SubscriptSize_temp_13 = 0.0f;
unmarshaled_m_SubscriptSize_temp_13 = marshaled.___m_SubscriptSize_13;
unmarshaled.set_m_SubscriptSize_13(unmarshaled_m_SubscriptSize_temp_13);
float unmarshaled_m_UnderlineOffset_temp_14 = 0.0f;
unmarshaled_m_UnderlineOffset_temp_14 = marshaled.___m_UnderlineOffset_14;
unmarshaled.set_m_UnderlineOffset_14(unmarshaled_m_UnderlineOffset_temp_14);
float unmarshaled_m_UnderlineThickness_temp_15 = 0.0f;
unmarshaled_m_UnderlineThickness_temp_15 = marshaled.___m_UnderlineThickness_15;
unmarshaled.set_m_UnderlineThickness_15(unmarshaled_m_UnderlineThickness_temp_15);
float unmarshaled_m_StrikethroughOffset_temp_16 = 0.0f;
unmarshaled_m_StrikethroughOffset_temp_16 = marshaled.___m_StrikethroughOffset_16;
unmarshaled.set_m_StrikethroughOffset_16(unmarshaled_m_StrikethroughOffset_temp_16);
float unmarshaled_m_StrikethroughThickness_temp_17 = 0.0f;
unmarshaled_m_StrikethroughThickness_temp_17 = marshaled.___m_StrikethroughThickness_17;
unmarshaled.set_m_StrikethroughThickness_17(unmarshaled_m_StrikethroughThickness_temp_17);
float unmarshaled_m_TabWidth_temp_18 = 0.0f;
unmarshaled_m_TabWidth_temp_18 = marshaled.___m_TabWidth_18;
unmarshaled.set_m_TabWidth_18(unmarshaled_m_TabWidth_temp_18);
}
// Conversion method for clean up from marshalling of: UnityEngine.TextCore.FaceInfo
IL2CPP_EXTERN_C void FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshal_com_cleanup(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979_marshaled_com& marshaled)
{
il2cpp_codegen_marshal_free_bstring(marshaled.___m_FamilyName_0);
marshaled.___m_FamilyName_0 = NULL;
il2cpp_codegen_marshal_free_bstring(marshaled.___m_StyleName_1);
marshaled.___m_StyleName_1 = NULL;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_familyName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_familyName_mF2284C683441750136664CE2F54A6A1B8D025BCF (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_m_FamilyName_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_familyName_mF2284C683441750136664CE2F54A6A1B8D025BCF_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_familyName_mF2284C683441750136664CE2F54A6A1B8D025BCF(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.TextCore.FaceInfo::set_styleName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_styleName_m2EA494E818600812D1EF63E1B861D930D72DDB2F (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_m_StyleName_1(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_styleName_m2EA494E818600812D1EF63E1B861D930D72DDB2F_AdjustorThunk (RuntimeObject * __this, String_t* ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_styleName_m2EA494E818600812D1EF63E1B861D930D72DDB2F(_thisAdjusted, ___value0, method);
}
// System.Int32 UnityEngine.TextCore.FaceInfo::get_pointSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FaceInfo_get_pointSize_m3C6775E1AE5F27EAAB93CC84480B14AFBDB5E330 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_PointSize_2();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t FaceInfo_get_pointSize_m3C6775E1AE5F27EAAB93CC84480B14AFBDB5E330_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
int32_t _returnValue;
_returnValue = FaceInfo_get_pointSize_m3C6775E1AE5F27EAAB93CC84480B14AFBDB5E330(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_pointSize(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_pointSize_m26A4A24116D162BB182959D46AB2FA6576A84CF9 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_m_PointSize_2(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_pointSize_m26A4A24116D162BB182959D46AB2FA6576A84CF9_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_pointSize_m26A4A24116D162BB182959D46AB2FA6576A84CF9(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_scale()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_scale_mA059FCEE1F13BBDF846AB8D8B8EDA468F4FCD2A4 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_Scale_3();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_scale_mA059FCEE1F13BBDF846AB8D8B8EDA468F4FCD2A4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_scale_mA059FCEE1F13BBDF846AB8D8B8EDA468F4FCD2A4(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_scale(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_scale_mA870178A90FC90A4E7D7149972CF190112244D9C (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_Scale_3(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_scale_mA870178A90FC90A4E7D7149972CF190112244D9C_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_scale_mA870178A90FC90A4E7D7149972CF190112244D9C(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_lineHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_lineHeight_m4BC0162351D2C7E607ECDF93534DAF0169AAEFE5 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_LineHeight_4();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_lineHeight_m4BC0162351D2C7E607ECDF93534DAF0169AAEFE5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_lineHeight_m4BC0162351D2C7E607ECDF93534DAF0169AAEFE5(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_lineHeight(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_lineHeight_mF771EE64A254D4ED012070BDC94B06545668D347 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_LineHeight_4(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_lineHeight_mF771EE64A254D4ED012070BDC94B06545668D347_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_lineHeight_mF771EE64A254D4ED012070BDC94B06545668D347(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_ascentLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_ascentLine_m69928E2E998FA9441C7628BF7F8D9E888470D983 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_AscentLine_5();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_ascentLine_m69928E2E998FA9441C7628BF7F8D9E888470D983_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_ascentLine_m69928E2E998FA9441C7628BF7F8D9E888470D983(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_ascentLine(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_ascentLine_m510C3CF1B961D9BEDD79A4BAA7D65742C33AAD06 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_AscentLine_5(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_ascentLine_m510C3CF1B961D9BEDD79A4BAA7D65742C33AAD06_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_ascentLine_m510C3CF1B961D9BEDD79A4BAA7D65742C33AAD06(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_capLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_capLine_m16556D45E8441052D15DAE83CDB3FC31635BE0A7 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_CapLine_6();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_capLine_m16556D45E8441052D15DAE83CDB3FC31635BE0A7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_capLine_m16556D45E8441052D15DAE83CDB3FC31635BE0A7(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_capLine(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_capLine_m6FB88B8953008824E84DBA88B3896DD98A1E8926 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_CapLine_6(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_capLine_m6FB88B8953008824E84DBA88B3896DD98A1E8926_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_capLine_m6FB88B8953008824E84DBA88B3896DD98A1E8926(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_meanLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_meanLine_m10957577CE99FF794523FA34E4ED873B4888A11D (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_MeanLine_7();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_meanLine_m10957577CE99FF794523FA34E4ED873B4888A11D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_meanLine_m10957577CE99FF794523FA34E4ED873B4888A11D(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_meanLine(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_meanLine_m9118E1C37F756267BF93CE1E94C880FACB70E2A2 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_MeanLine_7(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_meanLine_m9118E1C37F756267BF93CE1E94C880FACB70E2A2_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_meanLine_m9118E1C37F756267BF93CE1E94C880FACB70E2A2(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_baseline()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_baseline_m7EB9429D8D329E5DA5DB890CEF02A6C015C056D6 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_Baseline_8();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_baseline_m7EB9429D8D329E5DA5DB890CEF02A6C015C056D6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_baseline_m7EB9429D8D329E5DA5DB890CEF02A6C015C056D6(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_baseline(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_baseline_m83DA240FEADBE11609EB11B79AC9FE6165ABBAC7 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_Baseline_8(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_baseline_m83DA240FEADBE11609EB11B79AC9FE6165ABBAC7_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_baseline_m83DA240FEADBE11609EB11B79AC9FE6165ABBAC7(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_descentLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_descentLine_m0AEF0D85997836B841605DCE178ABA42A92C6EFA (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_DescentLine_9();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_descentLine_m0AEF0D85997836B841605DCE178ABA42A92C6EFA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_descentLine_m0AEF0D85997836B841605DCE178ABA42A92C6EFA(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_descentLine(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_descentLine_m91AB76A124FE9E536BD72785512B2C623BA2B067 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_DescentLine_9(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_descentLine_m91AB76A124FE9E536BD72785512B2C623BA2B067_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_descentLine_m91AB76A124FE9E536BD72785512B2C623BA2B067(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_superscriptOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_superscriptOffset_mAF8D37F78A79780652BAE40384F0C4DED8350769 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_SuperscriptOffset_10();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_superscriptOffset_mAF8D37F78A79780652BAE40384F0C4DED8350769_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_superscriptOffset_mAF8D37F78A79780652BAE40384F0C4DED8350769(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_superscriptOffset(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_superscriptOffset_mE0422507D4C2DE3F2CFF7286F90462675741D15E (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_SuperscriptOffset_10(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_superscriptOffset_mE0422507D4C2DE3F2CFF7286F90462675741D15E_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_superscriptOffset_mE0422507D4C2DE3F2CFF7286F90462675741D15E(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_superscriptSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_superscriptSize_m7FBEC1B0C97A7DC9D581AF9ADBDDCF14F7565F1A (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_SuperscriptSize_11();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_superscriptSize_m7FBEC1B0C97A7DC9D581AF9ADBDDCF14F7565F1A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_superscriptSize_m7FBEC1B0C97A7DC9D581AF9ADBDDCF14F7565F1A(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_superscriptSize(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_superscriptSize_mCDE84F4EA47D69B7D783FE62DA78656BBC17C07E (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_SuperscriptSize_11(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_superscriptSize_mCDE84F4EA47D69B7D783FE62DA78656BBC17C07E_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_superscriptSize_mCDE84F4EA47D69B7D783FE62DA78656BBC17C07E(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_subscriptOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_subscriptOffset_mD3F7F2F5F93364977E3F81E9B693D5CDB1419088 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_SubscriptOffset_12();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_subscriptOffset_mD3F7F2F5F93364977E3F81E9B693D5CDB1419088_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_subscriptOffset_mD3F7F2F5F93364977E3F81E9B693D5CDB1419088(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_subscriptOffset(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_subscriptOffset_mCF79D815311C70E3E8CC2BC241FEFE39CC992A39 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_SubscriptOffset_12(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_subscriptOffset_mCF79D815311C70E3E8CC2BC241FEFE39CC992A39_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_subscriptOffset_mCF79D815311C70E3E8CC2BC241FEFE39CC992A39(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_subscriptSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_subscriptSize_mEC9AEAD24A51AB19FFCC09AE919EF656ED2C6413 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_SubscriptSize_13();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_subscriptSize_mEC9AEAD24A51AB19FFCC09AE919EF656ED2C6413_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_subscriptSize_mEC9AEAD24A51AB19FFCC09AE919EF656ED2C6413(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_subscriptSize(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_subscriptSize_m61497C0D29FE50D498648DEC0FAADA9ED151387A (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_SubscriptSize_13(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_subscriptSize_m61497C0D29FE50D498648DEC0FAADA9ED151387A_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_subscriptSize_m61497C0D29FE50D498648DEC0FAADA9ED151387A(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_underlineOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_underlineOffset_m0F2900E06388C697807D43285BD4979E9D0BDA50 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_UnderlineOffset_14();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_underlineOffset_m0F2900E06388C697807D43285BD4979E9D0BDA50_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_underlineOffset_m0F2900E06388C697807D43285BD4979E9D0BDA50(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_underlineOffset(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_underlineOffset_mBE89D25E848FAF83FB750D95A93F6C051D798B54 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_UnderlineOffset_14(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_underlineOffset_mBE89D25E848FAF83FB750D95A93F6C051D798B54_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_underlineOffset_mBE89D25E848FAF83FB750D95A93F6C051D798B54(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_underlineThickness()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_underlineThickness_m07A6016172DE8DC1514CA780EBB80C32FA209F28 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_UnderlineThickness_15();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_underlineThickness_m07A6016172DE8DC1514CA780EBB80C32FA209F28_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_underlineThickness_m07A6016172DE8DC1514CA780EBB80C32FA209F28(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_underlineThickness(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_underlineThickness_m86B440DB7CBDB6C588FBC03990B980A715726059 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_UnderlineThickness_15(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_underlineThickness_m86B440DB7CBDB6C588FBC03990B980A715726059_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_underlineThickness_m86B440DB7CBDB6C588FBC03990B980A715726059(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_strikethroughOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_strikethroughOffset_m705C7A75FFA7E324582D6A1CC404ED4C8E8417EB (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_StrikethroughOffset_16();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_strikethroughOffset_m705C7A75FFA7E324582D6A1CC404ED4C8E8417EB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_strikethroughOffset_m705C7A75FFA7E324582D6A1CC404ED4C8E8417EB(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_strikethroughOffset(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_strikethroughOffset_m9ACD0A24A8EC5FEB90596BA43E8E8D8FF7EA0623 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_StrikethroughOffset_16(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_strikethroughOffset_m9ACD0A24A8EC5FEB90596BA43E8E8D8FF7EA0623_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_strikethroughOffset_m9ACD0A24A8EC5FEB90596BA43E8E8D8FF7EA0623(_thisAdjusted, ___value0, method);
}
// System.Void UnityEngine.TextCore.FaceInfo::set_strikethroughThickness(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_strikethroughThickness_mE26FAFBC6C984F88F68F7507CFE8AFB28E1932E7 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_StrikethroughThickness_17(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_strikethroughThickness_mE26FAFBC6C984F88F68F7507CFE8AFB28E1932E7_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_strikethroughThickness_mE26FAFBC6C984F88F68F7507CFE8AFB28E1932E7(_thisAdjusted, ___value0, method);
}
// System.Single UnityEngine.TextCore.FaceInfo::get_tabWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FaceInfo_get_tabWidth_mFBE94B2FBBB301B0FC1011D49A96032A0EE1A588 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_TabWidth_18();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float FaceInfo_get_tabWidth_mFBE94B2FBBB301B0FC1011D49A96032A0EE1A588_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
float _returnValue;
_returnValue = FaceInfo_get_tabWidth_mFBE94B2FBBB301B0FC1011D49A96032A0EE1A588(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.FaceInfo::set_tabWidth(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FaceInfo_set_tabWidth_mE024C95E768A214E3C85781753658B437F4B6B54 (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_TabWidth_18(L_0);
return;
}
}
IL2CPP_EXTERN_C void FaceInfo_set_tabWidth_mE024C95E768A214E3C85781753658B437F4B6B54_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * _thisAdjusted = reinterpret_cast<FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *>(__this + _offset);
FaceInfo_set_tabWidth_mE024C95E768A214E3C85781753658B437F4B6B54(_thisAdjusted, ___value0, 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
// UnityEngine.TextCore.LowLevel.FontEngineError UnityEngine.TextCore.LowLevel.FontEngine::InitializeFontEngine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_InitializeFontEngine_m85697221DC9ED18EC8356014293D423347054C43 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
int32_t L_0;
L_0 = FontEngine_InitializeFontEngine_Internal_m50E925BB9BE850ADB0611C2707FCECF3FB728C71(/*hidden argument*/NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Int32 UnityEngine.TextCore.LowLevel.FontEngine::InitializeFontEngine_Internal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_InitializeFontEngine_Internal_m50E925BB9BE850ADB0611C2707FCECF3FB728C71 (const RuntimeMethod* method)
{
typedef int32_t (*FontEngine_InitializeFontEngine_Internal_m50E925BB9BE850ADB0611C2707FCECF3FB728C71_ftn) ();
static FontEngine_InitializeFontEngine_Internal_m50E925BB9BE850ADB0611C2707FCECF3FB728C71_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (FontEngine_InitializeFontEngine_Internal_m50E925BB9BE850ADB0611C2707FCECF3FB728C71_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::InitializeFontEngine_Internal()");
int32_t icallRetVal = _il2cpp_icall_func();
return icallRetVal;
}
// UnityEngine.TextCore.LowLevel.FontEngineError UnityEngine.TextCore.LowLevel.FontEngine::LoadFontFace(UnityEngine.Font,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_m85674659FD8AA761C771CA869FC345B1555EDD5D (Font_tB53D3F362CB1A0B92307B362826F212AE2D2A6A9 * ___font0, int32_t ___pointSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Font_tB53D3F362CB1A0B92307B362826F212AE2D2A6A9 * L_0 = ___font0;
int32_t L_1 = ___pointSize1;
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
int32_t L_2;
L_2 = FontEngine_LoadFontFace_With_Size_FromFont_Internal_m2904823B237D890C9AC817A13098274D7DEC4FA7(L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
goto IL_000b;
}
IL_000b:
{
int32_t L_3 = V_0;
return L_3;
}
}
// System.Int32 UnityEngine.TextCore.LowLevel.FontEngine::LoadFontFace_With_Size_FromFont_Internal(UnityEngine.Font,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_LoadFontFace_With_Size_FromFont_Internal_m2904823B237D890C9AC817A13098274D7DEC4FA7 (Font_tB53D3F362CB1A0B92307B362826F212AE2D2A6A9 * ___font0, int32_t ___pointSize1, const RuntimeMethod* method)
{
typedef int32_t (*FontEngine_LoadFontFace_With_Size_FromFont_Internal_m2904823B237D890C9AC817A13098274D7DEC4FA7_ftn) (Font_tB53D3F362CB1A0B92307B362826F212AE2D2A6A9 *, int32_t);
static FontEngine_LoadFontFace_With_Size_FromFont_Internal_m2904823B237D890C9AC817A13098274D7DEC4FA7_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (FontEngine_LoadFontFace_With_Size_FromFont_Internal_m2904823B237D890C9AC817A13098274D7DEC4FA7_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::LoadFontFace_With_Size_FromFont_Internal(UnityEngine.Font,System.Int32)");
int32_t icallRetVal = _il2cpp_icall_func(___font0, ___pointSize1);
return icallRetVal;
}
// UnityEngine.TextCore.FaceInfo UnityEngine.TextCore.LowLevel.FontEngine::GetFaceInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 FontEngine_GetFaceInfo_m76A5E8DEE1846A7D56BC72D8FE177CA6656F8385 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 V_0;
memset((&V_0), 0, sizeof(V_0));
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 V_1;
memset((&V_1), 0, sizeof(V_1));
{
il2cpp_codegen_initobj((&V_0), sizeof(FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 ));
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
int32_t L_0;
L_0 = FontEngine_GetFaceInfo_Internal_m86BF1FCC26761DEB15EBC252943F10690612F6CA((FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *)(&V_0), /*hidden argument*/NULL);
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 L_1 = V_0;
V_1 = L_1;
goto IL_0015;
}
IL_0015:
{
FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 L_2 = V_1;
return L_2;
}
}
// System.Int32 UnityEngine.TextCore.LowLevel.FontEngine::GetFaceInfo_Internal(UnityEngine.TextCore.FaceInfo&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_GetFaceInfo_Internal_m86BF1FCC26761DEB15EBC252943F10690612F6CA (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 * ___faceInfo0, const RuntimeMethod* method)
{
typedef int32_t (*FontEngine_GetFaceInfo_Internal_m86BF1FCC26761DEB15EBC252943F10690612F6CA_ftn) (FaceInfo_t3A29F58B4C0435D2D76E3474E2B9D03F8A20C979 *);
static FontEngine_GetFaceInfo_Internal_m86BF1FCC26761DEB15EBC252943F10690612F6CA_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (FontEngine_GetFaceInfo_Internal_m86BF1FCC26761DEB15EBC252943F10690612F6CA_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::GetFaceInfo_Internal(UnityEngine.TextCore.FaceInfo&)");
int32_t icallRetVal = _il2cpp_icall_func(___faceInfo0);
return icallRetVal;
}
// System.UInt32 UnityEngine.TextCore.LowLevel.FontEngine::GetGlyphIndex(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t FontEngine_GetGlyphIndex_mFA9D09AB6E5FC7234F0154D9BF53923762EE1947 (uint32_t ___unicode0, const RuntimeMethod* method)
{
typedef uint32_t (*FontEngine_GetGlyphIndex_mFA9D09AB6E5FC7234F0154D9BF53923762EE1947_ftn) (uint32_t);
static FontEngine_GetGlyphIndex_mFA9D09AB6E5FC7234F0154D9BF53923762EE1947_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (FontEngine_GetGlyphIndex_mFA9D09AB6E5FC7234F0154D9BF53923762EE1947_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::GetGlyphIndex(System.UInt32)");
uint32_t icallRetVal = _il2cpp_icall_func(___unicode0);
return icallRetVal;
}
// System.Boolean UnityEngine.TextCore.LowLevel.FontEngine::TryGetGlyphWithUnicodeValue(System.UInt32,UnityEngine.TextCore.LowLevel.GlyphLoadFlags,UnityEngine.TextCore.Glyph&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetGlyphWithUnicodeValue_m2C8B5D37D097FB1C75846E431D29AC15349CBA3B (uint32_t ___unicode0, int32_t ___flags1, Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 ** ___glyph2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
bool V_2 = false;
{
il2cpp_codegen_initobj((&V_0), sizeof(GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 ));
uint32_t L_0 = ___unicode0;
int32_t L_1 = ___flags1;
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
bool L_2;
L_2 = FontEngine_TryGetGlyphWithUnicodeValue_Internal_m4DDE3BF8F78CEDB763D821454B89997BB9BA276C(L_0, L_1, (GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 *)(&V_0), /*hidden argument*/NULL);
V_1 = L_2;
bool L_3 = V_1;
if (!L_3)
{
goto IL_0023;
}
}
{
Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 ** L_4 = ___glyph2;
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 L_5 = V_0;
Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * L_6 = (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 *)il2cpp_codegen_object_new(Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_il2cpp_TypeInfo_var);
Glyph__ctor_m926A82734800BFA828FFB469B956F563FF0F1994(L_6, L_5, /*hidden argument*/NULL);
*((RuntimeObject **)L_4) = (RuntimeObject *)L_6;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_4, (void*)(RuntimeObject *)L_6);
V_2 = (bool)1;
goto IL_002a;
}
IL_0023:
{
Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 ** L_7 = ___glyph2;
*((RuntimeObject **)L_7) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_7, (void*)(RuntimeObject *)NULL);
V_2 = (bool)0;
goto IL_002a;
}
IL_002a:
{
bool L_8 = V_2;
return L_8;
}
}
// System.Boolean UnityEngine.TextCore.LowLevel.FontEngine::TryGetGlyphWithUnicodeValue_Internal(System.UInt32,UnityEngine.TextCore.LowLevel.GlyphLoadFlags,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetGlyphWithUnicodeValue_Internal_m4DDE3BF8F78CEDB763D821454B89997BB9BA276C (uint32_t ___unicode0, int32_t ___loadFlags1, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 * ___glyphStruct2, const RuntimeMethod* method)
{
typedef bool (*FontEngine_TryGetGlyphWithUnicodeValue_Internal_m4DDE3BF8F78CEDB763D821454B89997BB9BA276C_ftn) (uint32_t, int32_t, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 *);
static FontEngine_TryGetGlyphWithUnicodeValue_Internal_m4DDE3BF8F78CEDB763D821454B89997BB9BA276C_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (FontEngine_TryGetGlyphWithUnicodeValue_Internal_m4DDE3BF8F78CEDB763D821454B89997BB9BA276C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::TryGetGlyphWithUnicodeValue_Internal(System.UInt32,UnityEngine.TextCore.LowLevel.GlyphLoadFlags,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct&)");
bool icallRetVal = _il2cpp_icall_func(___unicode0, ___loadFlags1, ___glyphStruct2);
return icallRetVal;
}
// System.Boolean UnityEngine.TextCore.LowLevel.FontEngine::TryGetGlyphWithIndexValue(System.UInt32,UnityEngine.TextCore.LowLevel.GlyphLoadFlags,UnityEngine.TextCore.Glyph&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetGlyphWithIndexValue_m775B743546174CA10A01141847225874AC3EE7D9 (uint32_t ___glyphIndex0, int32_t ___flags1, Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 ** ___glyph2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
bool V_2 = false;
{
il2cpp_codegen_initobj((&V_0), sizeof(GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 ));
uint32_t L_0 = ___glyphIndex0;
int32_t L_1 = ___flags1;
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
bool L_2;
L_2 = FontEngine_TryGetGlyphWithIndexValue_Internal_mF1CB9EABC97E1A1372A23297EAFBE7EAB5A6313A(L_0, L_1, (GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 *)(&V_0), /*hidden argument*/NULL);
V_1 = L_2;
bool L_3 = V_1;
if (!L_3)
{
goto IL_0023;
}
}
{
Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 ** L_4 = ___glyph2;
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 L_5 = V_0;
Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * L_6 = (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 *)il2cpp_codegen_object_new(Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_il2cpp_TypeInfo_var);
Glyph__ctor_m926A82734800BFA828FFB469B956F563FF0F1994(L_6, L_5, /*hidden argument*/NULL);
*((RuntimeObject **)L_4) = (RuntimeObject *)L_6;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_4, (void*)(RuntimeObject *)L_6);
V_2 = (bool)1;
goto IL_002a;
}
IL_0023:
{
Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 ** L_7 = ___glyph2;
*((RuntimeObject **)L_7) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_7, (void*)(RuntimeObject *)NULL);
V_2 = (bool)0;
goto IL_002a;
}
IL_002a:
{
bool L_8 = V_2;
return L_8;
}
}
// System.Boolean UnityEngine.TextCore.LowLevel.FontEngine::TryGetGlyphWithIndexValue_Internal(System.UInt32,UnityEngine.TextCore.LowLevel.GlyphLoadFlags,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryGetGlyphWithIndexValue_Internal_mF1CB9EABC97E1A1372A23297EAFBE7EAB5A6313A (uint32_t ___glyphIndex0, int32_t ___loadFlags1, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 * ___glyphStruct2, const RuntimeMethod* method)
{
typedef bool (*FontEngine_TryGetGlyphWithIndexValue_Internal_mF1CB9EABC97E1A1372A23297EAFBE7EAB5A6313A_ftn) (uint32_t, int32_t, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 *);
static FontEngine_TryGetGlyphWithIndexValue_Internal_mF1CB9EABC97E1A1372A23297EAFBE7EAB5A6313A_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (FontEngine_TryGetGlyphWithIndexValue_Internal_mF1CB9EABC97E1A1372A23297EAFBE7EAB5A6313A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::TryGetGlyphWithIndexValue_Internal(System.UInt32,UnityEngine.TextCore.LowLevel.GlyphLoadFlags,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct&)");
bool icallRetVal = _il2cpp_icall_func(___glyphIndex0, ___loadFlags1, ___glyphStruct2);
return icallRetVal;
}
// System.Boolean UnityEngine.TextCore.LowLevel.FontEngine::TryAddGlyphToTexture(System.UInt32,System.Int32,UnityEngine.TextCore.LowLevel.GlyphPackingMode,System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>,System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>,UnityEngine.TextCore.LowLevel.GlyphRenderMode,UnityEngine.Texture2D,UnityEngine.TextCore.Glyph&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryAddGlyphToTexture_mF2513F6DE362FCB9609BE09CC1EFB6D851922200 (uint32_t ___glyphIndex0, int32_t ___padding1, int32_t ___packingMode2, List_1_tE870449A6BC21548542BC92F18B284004FA8668A * ___freeGlyphRects3, List_1_tE870449A6BC21548542BC92F18B284004FA8668A * ___usedGlyphRects4, int32_t ___renderMode5, Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___texture6, Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 ** ___glyph7, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 V_4;
memset((&V_4), 0, sizeof(V_4));
bool V_5 = false;
int32_t V_6 = 0;
int32_t V_7 = 0;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
int32_t V_12 = 0;
bool V_13 = false;
bool V_14 = false;
bool V_15 = false;
bool V_16 = false;
int32_t G_B3_0 = 0;
{
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_0 = ___freeGlyphRects3;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_inline(L_0, /*hidden argument*/List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_RuntimeMethod_var);
V_0 = L_1;
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_2 = ___usedGlyphRects4;
NullCheck(L_2);
int32_t L_3;
L_3 = List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_inline(L_2, /*hidden argument*/List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_RuntimeMethod_var);
V_1 = L_3;
int32_t L_4 = V_0;
int32_t L_5 = V_1;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5));
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_6 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_FreeGlyphRects_4();
NullCheck(L_6);
int32_t L_7 = V_2;
if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))) < ((int32_t)L_7)))
{
goto IL_002a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_8 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_UsedGlyphRects_5();
NullCheck(L_8);
int32_t L_9 = V_2;
G_B3_0 = ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))) < ((int32_t)L_9))? 1 : 0);
goto IL_002b;
}
IL_002a:
{
G_B3_0 = 1;
}
IL_002b:
{
V_5 = (bool)G_B3_0;
bool L_10 = V_5;
if (!L_10)
{
goto IL_0055;
}
}
{
int32_t L_11 = V_2;
int32_t L_12;
L_12 = Mathf_NextPowerOfTwo_m89DB0674631948FE00FD5660B18D9E62CE85CAF5(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)), /*hidden argument*/NULL);
V_6 = L_12;
int32_t L_13 = V_6;
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_14 = (GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)SZArrayNew(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA_il2cpp_TypeInfo_var, (uint32_t)L_13);
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_FreeGlyphRects_4(L_14);
int32_t L_15 = V_6;
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_16 = (GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)SZArrayNew(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA_il2cpp_TypeInfo_var, (uint32_t)L_15);
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_UsedGlyphRects_5(L_16);
}
IL_0055:
{
int32_t L_17 = V_0;
int32_t L_18 = V_1;
int32_t L_19;
L_19 = Mathf_Max_mAB2544BF70651EC36982F5F4EBD250AEE283335A(L_17, L_18, /*hidden argument*/NULL);
V_3 = L_19;
V_7 = 0;
goto IL_00a9;
}
IL_0062:
{
int32_t L_20 = V_7;
int32_t L_21 = V_0;
V_8 = (bool)((((int32_t)L_20) < ((int32_t)L_21))? 1 : 0);
bool L_22 = V_8;
if (!L_22)
{
goto IL_0082;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_23 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_FreeGlyphRects_4();
int32_t L_24 = V_7;
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_25 = ___freeGlyphRects3;
int32_t L_26 = V_7;
NullCheck(L_25);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_27;
L_27 = List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_inline(L_25, L_26, /*hidden argument*/List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_RuntimeMethod_var);
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D )L_27);
}
IL_0082:
{
int32_t L_28 = V_7;
int32_t L_29 = V_1;
V_9 = (bool)((((int32_t)L_28) < ((int32_t)L_29))? 1 : 0);
bool L_30 = V_9;
if (!L_30)
{
goto IL_00a2;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_31 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_UsedGlyphRects_5();
int32_t L_32 = V_7;
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_33 = ___usedGlyphRects4;
int32_t L_34 = V_7;
NullCheck(L_33);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_35;
L_35 = List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_inline(L_33, L_34, /*hidden argument*/List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_RuntimeMethod_var);
NullCheck(L_31);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D )L_35);
}
IL_00a2:
{
int32_t L_36 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1));
}
IL_00a9:
{
int32_t L_37 = V_7;
int32_t L_38 = V_3;
V_10 = (bool)((((int32_t)L_37) < ((int32_t)L_38))? 1 : 0);
bool L_39 = V_10;
if (L_39)
{
goto IL_0062;
}
}
{
uint32_t L_40 = ___glyphIndex0;
int32_t L_41 = ___padding1;
int32_t L_42 = ___packingMode2;
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_43 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_FreeGlyphRects_4();
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_44 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_UsedGlyphRects_5();
int32_t L_45 = ___renderMode5;
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * L_46 = ___texture6;
bool L_47;
L_47 = FontEngine_TryAddGlyphToTexture_Internal_m1A0E3323EADB617657BF97F660649C6FDD1B14B7(L_40, L_41, L_42, L_43, (int32_t*)(&V_0), L_44, (int32_t*)(&V_1), L_45, L_46, (GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 *)(&V_4), /*hidden argument*/NULL);
V_11 = L_47;
bool L_48 = V_11;
if (!L_48)
{
goto IL_0152;
}
}
{
Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 ** L_49 = ___glyph7;
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 L_50 = V_4;
Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * L_51 = (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 *)il2cpp_codegen_object_new(Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_il2cpp_TypeInfo_var);
Glyph__ctor_m926A82734800BFA828FFB469B956F563FF0F1994(L_51, L_50, /*hidden argument*/NULL);
*((RuntimeObject **)L_49) = (RuntimeObject *)L_51;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_49, (void*)(RuntimeObject *)L_51);
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_52 = ___freeGlyphRects3;
NullCheck(L_52);
List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE(L_52, /*hidden argument*/List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE_RuntimeMethod_var);
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_53 = ___usedGlyphRects4;
NullCheck(L_53);
List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE(L_53, /*hidden argument*/List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE_RuntimeMethod_var);
int32_t L_54 = V_0;
int32_t L_55 = V_1;
int32_t L_56;
L_56 = Mathf_Max_mAB2544BF70651EC36982F5F4EBD250AEE283335A(L_54, L_55, /*hidden argument*/NULL);
V_3 = L_56;
V_12 = 0;
goto IL_0142;
}
IL_00fd:
{
int32_t L_57 = V_12;
int32_t L_58 = V_0;
V_13 = (bool)((((int32_t)L_57) < ((int32_t)L_58))? 1 : 0);
bool L_59 = V_13;
if (!L_59)
{
goto IL_011c;
}
}
{
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_60 = ___freeGlyphRects3;
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_61 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_FreeGlyphRects_4();
int32_t L_62 = V_12;
NullCheck(L_61);
int32_t L_63 = L_62;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_64 = (L_61)->GetAt(static_cast<il2cpp_array_size_t>(L_63));
NullCheck(L_60);
List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F(L_60, L_64, /*hidden argument*/List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F_RuntimeMethod_var);
}
IL_011c:
{
int32_t L_65 = V_12;
int32_t L_66 = V_1;
V_14 = (bool)((((int32_t)L_65) < ((int32_t)L_66))? 1 : 0);
bool L_67 = V_14;
if (!L_67)
{
goto IL_013b;
}
}
{
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_68 = ___usedGlyphRects4;
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_69 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_UsedGlyphRects_5();
int32_t L_70 = V_12;
NullCheck(L_69);
int32_t L_71 = L_70;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_72 = (L_69)->GetAt(static_cast<il2cpp_array_size_t>(L_71));
NullCheck(L_68);
List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F(L_68, L_72, /*hidden argument*/List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F_RuntimeMethod_var);
}
IL_013b:
{
int32_t L_73 = V_12;
V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_73, (int32_t)1));
}
IL_0142:
{
int32_t L_74 = V_12;
int32_t L_75 = V_3;
V_15 = (bool)((((int32_t)L_74) < ((int32_t)L_75))? 1 : 0);
bool L_76 = V_15;
if (L_76)
{
goto IL_00fd;
}
}
{
V_16 = (bool)1;
goto IL_015b;
}
IL_0152:
{
Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 ** L_77 = ___glyph7;
*((RuntimeObject **)L_77) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_77, (void*)(RuntimeObject *)NULL);
V_16 = (bool)0;
goto IL_015b;
}
IL_015b:
{
bool L_78 = V_16;
return L_78;
}
}
// System.Boolean UnityEngine.TextCore.LowLevel.FontEngine::TryAddGlyphToTexture_Internal(System.UInt32,System.Int32,UnityEngine.TextCore.LowLevel.GlyphPackingMode,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.LowLevel.GlyphRenderMode,UnityEngine.Texture2D,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryAddGlyphToTexture_Internal_m1A0E3323EADB617657BF97F660649C6FDD1B14B7 (uint32_t ___glyphIndex0, int32_t ___padding1, int32_t ___packingMode2, GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ___freeGlyphRects3, int32_t* ___freeGlyphRectCount4, GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ___usedGlyphRects5, int32_t* ___usedGlyphRectCount6, int32_t ___renderMode7, Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___texture8, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 * ___glyph9, const RuntimeMethod* method)
{
typedef bool (*FontEngine_TryAddGlyphToTexture_Internal_m1A0E3323EADB617657BF97F660649C6FDD1B14B7_ftn) (uint32_t, int32_t, int32_t, GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*, int32_t*, GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*, int32_t*, int32_t, Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF *, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 *);
static FontEngine_TryAddGlyphToTexture_Internal_m1A0E3323EADB617657BF97F660649C6FDD1B14B7_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (FontEngine_TryAddGlyphToTexture_Internal_m1A0E3323EADB617657BF97F660649C6FDD1B14B7_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::TryAddGlyphToTexture_Internal(System.UInt32,System.Int32,UnityEngine.TextCore.LowLevel.GlyphPackingMode,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.LowLevel.GlyphRenderMode,UnityEngine.Texture2D,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct&)");
bool icallRetVal = _il2cpp_icall_func(___glyphIndex0, ___padding1, ___packingMode2, ___freeGlyphRects3, ___freeGlyphRectCount4, ___usedGlyphRects5, ___usedGlyphRectCount6, ___renderMode7, ___texture8, ___glyph9);
return icallRetVal;
}
// System.Boolean UnityEngine.TextCore.LowLevel.FontEngine::TryAddGlyphsToTexture(System.Collections.Generic.List`1<System.UInt32>,System.Int32,UnityEngine.TextCore.LowLevel.GlyphPackingMode,System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>,System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>,UnityEngine.TextCore.LowLevel.GlyphRenderMode,UnityEngine.Texture2D,UnityEngine.TextCore.Glyph[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryAddGlyphsToTexture_m61337C5A18F0229A85A6203976715D70F3362655 (List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 * ___glyphIndexes0, int32_t ___padding1, int32_t ___packingMode2, List_1_tE870449A6BC21548542BC92F18B284004FA8668A * ___freeGlyphRects3, List_1_tE870449A6BC21548542BC92F18B284004FA8668A * ___usedGlyphRects4, int32_t ___renderMode5, Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___texture6, GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B** ___glyphs7, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m70BC2BBCAA532A1588DB59CA7E556F541F32621D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m31E439898C27BC917E851D5219B3EC4E53618ADE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF0EDAB22225C2411ABFD38819044326FB5BDC916);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
int32_t V_10 = 0;
bool V_11 = false;
int32_t V_12 = 0;
bool V_13 = false;
int32_t V_14 = 0;
int32_t V_15 = 0;
bool V_16 = false;
bool V_17 = false;
bool V_18 = false;
bool V_19 = false;
bool V_20 = false;
int32_t V_21 = 0;
bool V_22 = false;
bool V_23 = false;
bool V_24 = false;
bool V_25 = false;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
int32_t G_B16_0 = 0;
int32_t G_B32_0 = 0;
{
Profiler_BeginSample_m72E4BD9503BC991BAFAED992FF1CA4504C741865_inline(_stringLiteralF0EDAB22225C2411ABFD38819044326FB5BDC916, /*hidden argument*/NULL);
GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B** L_0 = ___glyphs7;
*((RuntimeObject **)L_0) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL);
List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 * L_1 = ___glyphIndexes0;
if (!L_1)
{
goto IL_001e;
}
}
{
List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 * L_2 = ___glyphIndexes0;
NullCheck(L_2);
int32_t L_3;
L_3 = List_1_get_Count_m70BC2BBCAA532A1588DB59CA7E556F541F32621D_inline(L_2, /*hidden argument*/List_1_get_Count_m70BC2BBCAA532A1588DB59CA7E556F541F32621D_RuntimeMethod_var);
G_B3_0 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
goto IL_001f;
}
IL_001e:
{
G_B3_0 = 1;
}
IL_001f:
{
V_6 = (bool)G_B3_0;
bool L_4 = V_6;
if (!L_4)
{
goto IL_0034;
}
}
{
Profiler_EndSample_m78C76E709113E225D47687E26EA320E4FC548B71(/*hidden argument*/NULL);
V_7 = (bool)0;
goto IL_028a;
}
IL_0034:
{
List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 * L_5 = ___glyphIndexes0;
NullCheck(L_5);
int32_t L_6;
L_6 = List_1_get_Count_m70BC2BBCAA532A1588DB59CA7E556F541F32621D_inline(L_5, /*hidden argument*/List_1_get_Count_m70BC2BBCAA532A1588DB59CA7E556F541F32621D_RuntimeMethod_var);
V_0 = L_6;
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_7 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_GlyphIndexes_MarshallingArray_A_1();
if (!L_7)
{
goto IL_004e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_8 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_GlyphIndexes_MarshallingArray_A_1();
NullCheck(L_8);
int32_t L_9 = V_0;
G_B8_0 = ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))) < ((int32_t)L_9))? 1 : 0);
goto IL_004f;
}
IL_004e:
{
G_B8_0 = 1;
}
IL_004f:
{
V_8 = (bool)G_B8_0;
bool L_10 = V_8;
if (!L_10)
{
goto IL_008a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_11 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_GlyphIndexes_MarshallingArray_A_1();
V_9 = (bool)((((RuntimeObject*)(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)L_11) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_12 = V_9;
if (!L_12)
{
goto IL_0071;
}
}
{
int32_t L_13 = V_0;
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_14 = (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)SZArrayNew(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var, (uint32_t)L_13);
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_GlyphIndexes_MarshallingArray_A_1(L_14);
goto IL_0089;
}
IL_0071:
{
int32_t L_15 = V_0;
int32_t L_16;
L_16 = Mathf_NextPowerOfTwo_m89DB0674631948FE00FD5660B18D9E62CE85CAF5(((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)), /*hidden argument*/NULL);
V_10 = L_16;
int32_t L_17 = V_10;
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_18 = (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)SZArrayNew(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var, (uint32_t)L_17);
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_GlyphIndexes_MarshallingArray_A_1(L_18);
}
IL_0089:
{
}
IL_008a:
{
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_19 = ___freeGlyphRects3;
NullCheck(L_19);
int32_t L_20;
L_20 = List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_inline(L_19, /*hidden argument*/List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_RuntimeMethod_var);
V_1 = L_20;
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_21 = ___usedGlyphRects4;
NullCheck(L_21);
int32_t L_22;
L_22 = List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_inline(L_21, /*hidden argument*/List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_RuntimeMethod_var);
V_2 = L_22;
int32_t L_23 = V_1;
int32_t L_24 = V_2;
int32_t L_25 = V_0;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)L_24)), (int32_t)L_25));
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_26 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_FreeGlyphRects_4();
NullCheck(L_26);
int32_t L_27 = V_3;
if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))) < ((int32_t)L_27)))
{
goto IL_00b5;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_28 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_UsedGlyphRects_5();
NullCheck(L_28);
int32_t L_29 = V_3;
G_B16_0 = ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))) < ((int32_t)L_29))? 1 : 0);
goto IL_00b6;
}
IL_00b5:
{
G_B16_0 = 1;
}
IL_00b6:
{
V_11 = (bool)G_B16_0;
bool L_30 = V_11;
if (!L_30)
{
goto IL_00e0;
}
}
{
int32_t L_31 = V_3;
int32_t L_32;
L_32 = Mathf_NextPowerOfTwo_m89DB0674631948FE00FD5660B18D9E62CE85CAF5(((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)), /*hidden argument*/NULL);
V_12 = L_32;
int32_t L_33 = V_12;
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_34 = (GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)SZArrayNew(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA_il2cpp_TypeInfo_var, (uint32_t)L_33);
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_FreeGlyphRects_4(L_34);
int32_t L_35 = V_12;
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_36 = (GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)SZArrayNew(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA_il2cpp_TypeInfo_var, (uint32_t)L_35);
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_UsedGlyphRects_5(L_36);
}
IL_00e0:
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* L_37 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_GlyphMarshallingStruct_OUT_3();
NullCheck(L_37);
int32_t L_38 = V_0;
V_13 = (bool)((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_37)->max_length)))) < ((int32_t)L_38))? 1 : 0);
bool L_39 = V_13;
if (!L_39)
{
goto IL_0108;
}
}
{
int32_t L_40 = V_0;
int32_t L_41;
L_41 = Mathf_NextPowerOfTwo_m89DB0674631948FE00FD5660B18D9E62CE85CAF5(((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)), /*hidden argument*/NULL);
V_14 = L_41;
int32_t L_42 = V_14;
GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* L_43 = (GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D*)(GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D*)SZArrayNew(GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D_il2cpp_TypeInfo_var, (uint32_t)L_42);
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_GlyphMarshallingStruct_OUT_3(L_43);
}
IL_0108:
{
int32_t L_44 = V_1;
int32_t L_45 = V_2;
int32_t L_46 = V_0;
int32_t L_47;
L_47 = FontEngineUtilities_MaxValue_m2EF659954522080160961E35BE6FDF1DD5C98FB7(L_44, L_45, L_46, /*hidden argument*/NULL);
V_4 = L_47;
V_15 = 0;
goto IL_0179;
}
IL_0117:
{
int32_t L_48 = V_15;
int32_t L_49 = V_0;
V_16 = (bool)((((int32_t)L_48) < ((int32_t)L_49))? 1 : 0);
bool L_50 = V_16;
if (!L_50)
{
goto IL_0133;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_51 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_GlyphIndexes_MarshallingArray_A_1();
int32_t L_52 = V_15;
List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 * L_53 = ___glyphIndexes0;
int32_t L_54 = V_15;
NullCheck(L_53);
uint32_t L_55;
L_55 = List_1_get_Item_m31E439898C27BC917E851D5219B3EC4E53618ADE_inline(L_53, L_54, /*hidden argument*/List_1_get_Item_m31E439898C27BC917E851D5219B3EC4E53618ADE_RuntimeMethod_var);
NullCheck(L_51);
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(L_52), (uint32_t)L_55);
}
IL_0133:
{
int32_t L_56 = V_15;
int32_t L_57 = V_1;
V_17 = (bool)((((int32_t)L_56) < ((int32_t)L_57))? 1 : 0);
bool L_58 = V_17;
if (!L_58)
{
goto IL_0152;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_59 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_FreeGlyphRects_4();
int32_t L_60 = V_15;
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_61 = ___freeGlyphRects3;
int32_t L_62 = V_15;
NullCheck(L_61);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_63;
L_63 = List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_inline(L_61, L_62, /*hidden argument*/List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_RuntimeMethod_var);
NullCheck(L_59);
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(L_60), (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D )L_63);
}
IL_0152:
{
int32_t L_64 = V_15;
int32_t L_65 = V_2;
V_18 = (bool)((((int32_t)L_64) < ((int32_t)L_65))? 1 : 0);
bool L_66 = V_18;
if (!L_66)
{
goto IL_0172;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_67 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_UsedGlyphRects_5();
int32_t L_68 = V_15;
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_69 = ___usedGlyphRects4;
int32_t L_70 = V_15;
NullCheck(L_69);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_71;
L_71 = List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_inline(L_69, L_70, /*hidden argument*/List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_RuntimeMethod_var);
NullCheck(L_67);
(L_67)->SetAt(static_cast<il2cpp_array_size_t>(L_68), (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D )L_71);
}
IL_0172:
{
int32_t L_72 = V_15;
V_15 = ((int32_t)il2cpp_codegen_add((int32_t)L_72, (int32_t)1));
}
IL_0179:
{
int32_t L_73 = V_15;
int32_t L_74 = V_4;
V_19 = (bool)((((int32_t)L_73) < ((int32_t)L_74))? 1 : 0);
bool L_75 = V_19;
if (L_75)
{
goto IL_0117;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_76 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_GlyphIndexes_MarshallingArray_A_1();
int32_t L_77 = ___padding1;
int32_t L_78 = ___packingMode2;
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_79 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_FreeGlyphRects_4();
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_80 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_UsedGlyphRects_5();
int32_t L_81 = ___renderMode5;
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * L_82 = ___texture6;
GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* L_83 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_GlyphMarshallingStruct_OUT_3();
bool L_84;
L_84 = FontEngine_TryAddGlyphsToTexture_Internal_mB0FE279387211C00BF9E5891C39462CD6F159CE8(L_76, L_77, L_78, L_79, (int32_t*)(&V_1), L_80, (int32_t*)(&V_2), L_81, L_82, L_83, (int32_t*)(&V_0), /*hidden argument*/NULL);
V_5 = L_84;
GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B* L_85 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_Glyphs_0();
if (!L_85)
{
goto IL_01c2;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B* L_86 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_Glyphs_0();
NullCheck(L_86);
int32_t L_87 = V_0;
G_B32_0 = ((((int32_t)((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_86)->max_length)))) > ((int32_t)L_87))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_01c3;
}
IL_01c2:
{
G_B32_0 = 1;
}
IL_01c3:
{
V_20 = (bool)G_B32_0;
bool L_88 = V_20;
if (!L_88)
{
goto IL_01db;
}
}
{
int32_t L_89 = V_0;
int32_t L_90;
L_90 = Mathf_NextPowerOfTwo_m89DB0674631948FE00FD5660B18D9E62CE85CAF5(((int32_t)il2cpp_codegen_add((int32_t)L_89, (int32_t)1)), /*hidden argument*/NULL);
GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B* L_91 = (GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B*)(GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B*)SZArrayNew(GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B_il2cpp_TypeInfo_var, (uint32_t)L_90);
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_Glyphs_0(L_91);
}
IL_01db:
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B* L_92 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_Glyphs_0();
int32_t L_93 = V_0;
NullCheck(L_92);
ArrayElementTypeCheck (L_92, NULL);
(L_92)->SetAt(static_cast<il2cpp_array_size_t>(L_93), (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 *)NULL);
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_94 = ___freeGlyphRects3;
NullCheck(L_94);
List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE(L_94, /*hidden argument*/List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE_RuntimeMethod_var);
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_95 = ___usedGlyphRects4;
NullCheck(L_95);
List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE(L_95, /*hidden argument*/List_1_Clear_m949403FFC1CA942A8E079B68690DD0403B97CCCE_RuntimeMethod_var);
int32_t L_96 = V_1;
int32_t L_97 = V_2;
int32_t L_98 = V_0;
int32_t L_99;
L_99 = FontEngineUtilities_MaxValue_m2EF659954522080160961E35BE6FDF1DD5C98FB7(L_96, L_97, L_98, /*hidden argument*/NULL);
V_4 = L_99;
V_21 = 0;
goto IL_026a;
}
IL_0201:
{
int32_t L_100 = V_21;
int32_t L_101 = V_0;
V_22 = (bool)((((int32_t)L_100) < ((int32_t)L_101))? 1 : 0);
bool L_102 = V_22;
if (!L_102)
{
goto IL_0226;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B* L_103 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_Glyphs_0();
int32_t L_104 = V_21;
GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* L_105 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_GlyphMarshallingStruct_OUT_3();
int32_t L_106 = V_21;
NullCheck(L_105);
int32_t L_107 = L_106;
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 L_108 = (L_105)->GetAt(static_cast<il2cpp_array_size_t>(L_107));
Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * L_109 = (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 *)il2cpp_codegen_object_new(Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_il2cpp_TypeInfo_var);
Glyph__ctor_m926A82734800BFA828FFB469B956F563FF0F1994(L_109, L_108, /*hidden argument*/NULL);
NullCheck(L_103);
ArrayElementTypeCheck (L_103, L_109);
(L_103)->SetAt(static_cast<il2cpp_array_size_t>(L_104), (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 *)L_109);
}
IL_0226:
{
int32_t L_110 = V_21;
int32_t L_111 = V_1;
V_23 = (bool)((((int32_t)L_110) < ((int32_t)L_111))? 1 : 0);
bool L_112 = V_23;
if (!L_112)
{
goto IL_0244;
}
}
{
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_113 = ___freeGlyphRects3;
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_114 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_FreeGlyphRects_4();
int32_t L_115 = V_21;
NullCheck(L_114);
int32_t L_116 = L_115;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_117 = (L_114)->GetAt(static_cast<il2cpp_array_size_t>(L_116));
NullCheck(L_113);
List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F(L_113, L_117, /*hidden argument*/List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F_RuntimeMethod_var);
}
IL_0244:
{
int32_t L_118 = V_21;
int32_t L_119 = V_2;
V_24 = (bool)((((int32_t)L_118) < ((int32_t)L_119))? 1 : 0);
bool L_120 = V_24;
if (!L_120)
{
goto IL_0263;
}
}
{
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_121 = ___usedGlyphRects4;
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_122 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_UsedGlyphRects_5();
int32_t L_123 = V_21;
NullCheck(L_122);
int32_t L_124 = L_123;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_125 = (L_122)->GetAt(static_cast<il2cpp_array_size_t>(L_124));
NullCheck(L_121);
List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F(L_121, L_125, /*hidden argument*/List_1_Add_m9501E9144E21625B5FBF950FE146C5944493044F_RuntimeMethod_var);
}
IL_0263:
{
int32_t L_126 = V_21;
V_21 = ((int32_t)il2cpp_codegen_add((int32_t)L_126, (int32_t)1));
}
IL_026a:
{
int32_t L_127 = V_21;
int32_t L_128 = V_4;
V_25 = (bool)((((int32_t)L_127) < ((int32_t)L_128))? 1 : 0);
bool L_129 = V_25;
if (L_129)
{
goto IL_0201;
}
}
{
GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B** L_130 = ___glyphs7;
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B* L_131 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_Glyphs_0();
*((RuntimeObject **)L_130) = (RuntimeObject *)L_131;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_130, (void*)(RuntimeObject *)L_131);
Profiler_EndSample_m78C76E709113E225D47687E26EA320E4FC548B71(/*hidden argument*/NULL);
bool L_132 = V_5;
V_7 = L_132;
goto IL_028a;
}
IL_028a:
{
bool L_133 = V_7;
return L_133;
}
}
// System.Boolean UnityEngine.TextCore.LowLevel.FontEngine::TryAddGlyphsToTexture_Internal(System.UInt32[],System.Int32,UnityEngine.TextCore.LowLevel.GlyphPackingMode,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.LowLevel.GlyphRenderMode,UnityEngine.Texture2D,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct[],System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontEngine_TryAddGlyphsToTexture_Internal_mB0FE279387211C00BF9E5891C39462CD6F159CE8 (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___glyphIndex0, int32_t ___padding1, int32_t ___packingMode2, GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ___freeGlyphRects3, int32_t* ___freeGlyphRectCount4, GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ___usedGlyphRects5, int32_t* ___usedGlyphRectCount6, int32_t ___renderMode7, Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___texture8, GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* ___glyphs9, int32_t* ___glyphCount10, const RuntimeMethod* method)
{
typedef bool (*FontEngine_TryAddGlyphsToTexture_Internal_mB0FE279387211C00BF9E5891C39462CD6F159CE8_ftn) (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*, int32_t, int32_t, GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*, int32_t*, GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*, int32_t*, int32_t, Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF *, GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D*, int32_t*);
static FontEngine_TryAddGlyphsToTexture_Internal_mB0FE279387211C00BF9E5891C39462CD6F159CE8_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (FontEngine_TryAddGlyphsToTexture_Internal_mB0FE279387211C00BF9E5891C39462CD6F159CE8_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::TryAddGlyphsToTexture_Internal(System.UInt32[],System.Int32,UnityEngine.TextCore.LowLevel.GlyphPackingMode,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.GlyphRect[],System.Int32&,UnityEngine.TextCore.LowLevel.GlyphRenderMode,UnityEngine.Texture2D,UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct[],System.Int32&)");
bool icallRetVal = _il2cpp_icall_func(___glyphIndex0, ___padding1, ___packingMode2, ___freeGlyphRects3, ___freeGlyphRectCount4, ___usedGlyphRects5, ___usedGlyphRectCount6, ___renderMode7, ___texture8, ___glyphs9, ___glyphCount10);
return icallRetVal;
}
// UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord[] UnityEngine.TextCore.LowLevel.FontEngine::GetGlyphPairAdjustmentTable(System.UInt32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609* FontEngine_GetGlyphPairAdjustmentTable_mE93C9A8673C34CAE740DEB22328F2A961DB76014 (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___glyphIndexes0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169_mEDCA1FCB26A509EEB1E1FDB5031380E479AC007C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609* V_2 = NULL;
{
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_0 = ___glyphIndexes0;
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
int32_t L_1;
L_1 = FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_GlyphIndexes_m209060A34247119B382FE9327CDDC85B8A04DEDF(L_0, (int32_t*)(&V_0), /*hidden argument*/NULL);
int32_t L_2 = V_0;
V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0016;
}
}
{
V_2 = (GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609*)NULL;
goto IL_0046;
}
IL_0016:
{
IL2CPP_RUNTIME_CLASS_INIT(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
int32_t L_4 = V_0;
FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169_mEDCA1FCB26A509EEB1E1FDB5031380E479AC007C((GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609**)(((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_address_of_s_PairAdjustmentRecords_MarshallingArray_6()), L_4, /*hidden argument*/FontEngine_SetMarshallingArraySize_TisGlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169_mEDCA1FCB26A509EEB1E1FDB5031380E479AC007C_RuntimeMethod_var);
GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609* L_5 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_PairAdjustmentRecords_MarshallingArray_6();
int32_t L_6;
L_6 = FontEngine_GetGlyphPairAdjustmentRecordsFromMarshallingArray_m0B720E99C766368DA85190A049A4F70C5805DFD4(L_5, /*hidden argument*/NULL);
GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609* L_7 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_PairAdjustmentRecords_MarshallingArray_6();
int32_t L_8 = V_0;
NullCheck(L_7);
il2cpp_codegen_initobj(((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8))), sizeof(GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 ));
GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609* L_9 = ((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->get_s_PairAdjustmentRecords_MarshallingArray_6();
V_2 = L_9;
goto IL_0046;
}
IL_0046:
{
GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609* L_10 = V_2;
return L_10;
}
}
// System.Int32 UnityEngine.TextCore.LowLevel.FontEngine::PopulatePairAdjustmentRecordMarshallingArray_from_GlyphIndexes(System.UInt32[],System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_GlyphIndexes_m209060A34247119B382FE9327CDDC85B8A04DEDF (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___glyphIndexes0, int32_t* ___recordCount1, const RuntimeMethod* method)
{
typedef int32_t (*FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_GlyphIndexes_m209060A34247119B382FE9327CDDC85B8A04DEDF_ftn) (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*, int32_t*);
static FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_GlyphIndexes_m209060A34247119B382FE9327CDDC85B8A04DEDF_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_GlyphIndexes_m209060A34247119B382FE9327CDDC85B8A04DEDF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::PopulatePairAdjustmentRecordMarshallingArray_from_GlyphIndexes(System.UInt32[],System.Int32&)");
int32_t icallRetVal = _il2cpp_icall_func(___glyphIndexes0, ___recordCount1);
return icallRetVal;
}
// System.Int32 UnityEngine.TextCore.LowLevel.FontEngine::GetGlyphPairAdjustmentRecordsFromMarshallingArray(UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngine_GetGlyphPairAdjustmentRecordsFromMarshallingArray_m0B720E99C766368DA85190A049A4F70C5805DFD4 (GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609* ___glyphPairAdjustmentRecords0, const RuntimeMethod* method)
{
typedef int32_t (*FontEngine_GetGlyphPairAdjustmentRecordsFromMarshallingArray_m0B720E99C766368DA85190A049A4F70C5805DFD4_ftn) (GlyphPairAdjustmentRecordU5BU5D_tC755C781D08A880F79F50795009CC0D0CA8AE609*);
static FontEngine_GetGlyphPairAdjustmentRecordsFromMarshallingArray_m0B720E99C766368DA85190A049A4F70C5805DFD4_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (FontEngine_GetGlyphPairAdjustmentRecordsFromMarshallingArray_m0B720E99C766368DA85190A049A4F70C5805DFD4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::GetGlyphPairAdjustmentRecordsFromMarshallingArray(UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord[])");
int32_t icallRetVal = _il2cpp_icall_func(___glyphPairAdjustmentRecords0);
return icallRetVal;
}
// System.Void UnityEngine.TextCore.LowLevel.FontEngine::ResetAtlasTexture(UnityEngine.Texture2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FontEngine_ResetAtlasTexture_m34415B1BC955B68AC8BFE1F339BA74E4B81C160B (Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___texture0, const RuntimeMethod* method)
{
typedef void (*FontEngine_ResetAtlasTexture_m34415B1BC955B68AC8BFE1F339BA74E4B81C160B_ftn) (Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF *);
static FontEngine_ResetAtlasTexture_m34415B1BC955B68AC8BFE1F339BA74E4B81C160B_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (FontEngine_ResetAtlasTexture_m34415B1BC955B68AC8BFE1F339BA74E4B81C160B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.TextCore.LowLevel.FontEngine::ResetAtlasTexture(UnityEngine.Texture2D)");
_il2cpp_icall_func(___texture0);
}
// System.Void UnityEngine.TextCore.LowLevel.FontEngine::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FontEngine__cctor_mACF18DD12F81B34818DC5508BC4EF347445F7FE3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mA742BAFFA1D2C33D93731258D03686051DD22B98_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B* L_0 = (GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B*)(GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B*)SZArrayNew(GlyphU5BU5D_tDC8ECA36264C4DC872F3D9429BD56E9B40300E4B_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_Glyphs_0(L_0);
GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* L_1 = (GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D*)(GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D*)SZArrayNew(GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_GlyphMarshallingStruct_IN_2(L_1);
GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D* L_2 = (GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D*)(GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D*)SZArrayNew(GlyphMarshallingStructU5BU5D_t622C5D3F6563BEE95999E5D27EA9C4DC087C682D_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_GlyphMarshallingStruct_OUT_3(L_2);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_3 = (GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)SZArrayNew(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_FreeGlyphRects_4(L_3);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_4 = (GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)SZArrayNew(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_UsedGlyphRects_5(L_4);
Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE * L_5 = (Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE *)il2cpp_codegen_object_new(Dictionary_2_tDA5C03A58B5E004C6D454EF31BF9C5307FE785BE_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mA742BAFFA1D2C33D93731258D03686051DD22B98(L_5, /*hidden argument*/Dictionary_2__ctor_mA742BAFFA1D2C33D93731258D03686051DD22B98_RuntimeMethod_var);
((FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_StaticFields*)il2cpp_codegen_static_fields_for(FontEngine_tB40C839EB1E69BEEA23F0D26EA1BCB883CC62AF5_il2cpp_TypeInfo_var))->set_s_GlyphLookupDictionary_7(L_5);
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.Int32 UnityEngine.TextCore.LowLevel.FontEngineUtilities::MaxValue(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontEngineUtilities_MaxValue_m2EF659954522080160961E35BE6FDF1DD5C98FB7 (int32_t ___a0, int32_t ___b1, int32_t ___c2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B4_0 = 0;
int32_t G_B8_0 = 0;
{
int32_t L_0 = ___a0;
int32_t L_1 = ___b1;
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_000f;
}
}
{
int32_t L_2 = ___a0;
int32_t L_3 = ___c2;
if ((((int32_t)L_2) < ((int32_t)L_3)))
{
goto IL_000c;
}
}
{
int32_t L_4 = ___a0;
G_B4_0 = L_4;
goto IL_000d;
}
IL_000c:
{
int32_t L_5 = ___c2;
G_B4_0 = L_5;
}
IL_000d:
{
G_B8_0 = G_B4_0;
goto IL_0017;
}
IL_000f:
{
int32_t L_6 = ___b1;
int32_t L_7 = ___c2;
if ((((int32_t)L_6) < ((int32_t)L_7)))
{
goto IL_0016;
}
}
{
int32_t L_8 = ___b1;
G_B8_0 = L_8;
goto IL_0017;
}
IL_0016:
{
int32_t L_9 = ___c2;
G_B8_0 = L_9;
}
IL_0017:
{
V_0 = G_B8_0;
goto IL_001a;
}
IL_001a:
{
int32_t L_10 = V_0;
return L_10;
}
}
#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.TextCore.Glyph
IL2CPP_EXTERN_C void Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshal_pinvoke(const Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1& unmarshaled, Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshaled_pinvoke& marshaled)
{
marshaled.___m_Index_0 = unmarshaled.get_m_Index_0();
marshaled.___m_Metrics_1 = unmarshaled.get_m_Metrics_1();
marshaled.___m_GlyphRect_2 = unmarshaled.get_m_GlyphRect_2();
marshaled.___m_Scale_3 = unmarshaled.get_m_Scale_3();
marshaled.___m_AtlasIndex_4 = unmarshaled.get_m_AtlasIndex_4();
}
IL2CPP_EXTERN_C void Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshal_pinvoke_back(const Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshaled_pinvoke& marshaled, Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1& unmarshaled)
{
uint32_t unmarshaled_m_Index_temp_0 = 0;
unmarshaled_m_Index_temp_0 = marshaled.___m_Index_0;
unmarshaled.set_m_Index_0(unmarshaled_m_Index_temp_0);
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B unmarshaled_m_Metrics_temp_1;
memset((&unmarshaled_m_Metrics_temp_1), 0, sizeof(unmarshaled_m_Metrics_temp_1));
unmarshaled_m_Metrics_temp_1 = marshaled.___m_Metrics_1;
unmarshaled.set_m_Metrics_1(unmarshaled_m_Metrics_temp_1);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D unmarshaled_m_GlyphRect_temp_2;
memset((&unmarshaled_m_GlyphRect_temp_2), 0, sizeof(unmarshaled_m_GlyphRect_temp_2));
unmarshaled_m_GlyphRect_temp_2 = marshaled.___m_GlyphRect_2;
unmarshaled.set_m_GlyphRect_2(unmarshaled_m_GlyphRect_temp_2);
float unmarshaled_m_Scale_temp_3 = 0.0f;
unmarshaled_m_Scale_temp_3 = marshaled.___m_Scale_3;
unmarshaled.set_m_Scale_3(unmarshaled_m_Scale_temp_3);
int32_t unmarshaled_m_AtlasIndex_temp_4 = 0;
unmarshaled_m_AtlasIndex_temp_4 = marshaled.___m_AtlasIndex_4;
unmarshaled.set_m_AtlasIndex_4(unmarshaled_m_AtlasIndex_temp_4);
}
// Conversion method for clean up from marshalling of: UnityEngine.TextCore.Glyph
IL2CPP_EXTERN_C void Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshal_pinvoke_cleanup(Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.TextCore.Glyph
IL2CPP_EXTERN_C void Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshal_com(const Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1& unmarshaled, Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshaled_com& marshaled)
{
marshaled.___m_Index_0 = unmarshaled.get_m_Index_0();
marshaled.___m_Metrics_1 = unmarshaled.get_m_Metrics_1();
marshaled.___m_GlyphRect_2 = unmarshaled.get_m_GlyphRect_2();
marshaled.___m_Scale_3 = unmarshaled.get_m_Scale_3();
marshaled.___m_AtlasIndex_4 = unmarshaled.get_m_AtlasIndex_4();
}
IL2CPP_EXTERN_C void Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshal_com_back(const Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshaled_com& marshaled, Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1& unmarshaled)
{
uint32_t unmarshaled_m_Index_temp_0 = 0;
unmarshaled_m_Index_temp_0 = marshaled.___m_Index_0;
unmarshaled.set_m_Index_0(unmarshaled_m_Index_temp_0);
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B unmarshaled_m_Metrics_temp_1;
memset((&unmarshaled_m_Metrics_temp_1), 0, sizeof(unmarshaled_m_Metrics_temp_1));
unmarshaled_m_Metrics_temp_1 = marshaled.___m_Metrics_1;
unmarshaled.set_m_Metrics_1(unmarshaled_m_Metrics_temp_1);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D unmarshaled_m_GlyphRect_temp_2;
memset((&unmarshaled_m_GlyphRect_temp_2), 0, sizeof(unmarshaled_m_GlyphRect_temp_2));
unmarshaled_m_GlyphRect_temp_2 = marshaled.___m_GlyphRect_2;
unmarshaled.set_m_GlyphRect_2(unmarshaled_m_GlyphRect_temp_2);
float unmarshaled_m_Scale_temp_3 = 0.0f;
unmarshaled_m_Scale_temp_3 = marshaled.___m_Scale_3;
unmarshaled.set_m_Scale_3(unmarshaled_m_Scale_temp_3);
int32_t unmarshaled_m_AtlasIndex_temp_4 = 0;
unmarshaled_m_AtlasIndex_temp_4 = marshaled.___m_AtlasIndex_4;
unmarshaled.set_m_AtlasIndex_4(unmarshaled_m_AtlasIndex_temp_4);
}
// Conversion method for clean up from marshalling of: UnityEngine.TextCore.Glyph
IL2CPP_EXTERN_C void Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshal_com_cleanup(Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1_marshaled_com& marshaled)
{
}
// System.UInt32 UnityEngine.TextCore.Glyph::get_index()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Glyph_get_index_mB9A53E02F757731DC06414DFC6F4F5D1615DC248 (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_Index_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.TextCore.Glyph::set_index(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph_set_index_m68FA74E7DF133C63E1544913F2ADC38BB27DBED4 (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___value0;
__this->set_m_Index_0(L_0);
return;
}
}
// UnityEngine.TextCore.GlyphMetrics UnityEngine.TextCore.Glyph::get_metrics()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B Glyph_get_metrics_m395A93D5BD1B7859DD95B17386DAA033D2F865B0 (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, const RuntimeMethod* method)
{
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B V_0;
memset((&V_0), 0, sizeof(V_0));
{
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_0 = __this->get_m_Metrics_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.TextCore.Glyph::set_metrics(UnityEngine.TextCore.GlyphMetrics)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph_set_metrics_mAA75ADA7FEE5D62A48D1558CE4393C8E4FBBBC3B (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B ___value0, const RuntimeMethod* method)
{
{
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_0 = ___value0;
__this->set_m_Metrics_1(L_0);
return;
}
}
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.Glyph::get_glyphRect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D Glyph_get_glyphRect_mA3484840AF306B3F9B146D7162424238B4F456F9 (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, const RuntimeMethod* method)
{
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D V_0;
memset((&V_0), 0, sizeof(V_0));
{
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_0 = __this->get_m_GlyphRect_2();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.TextCore.Glyph::set_glyphRect(UnityEngine.TextCore.GlyphRect)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph_set_glyphRect_mC1B26C50850B546BF6CF5AE5765FA6080F983B3B (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___value0, const RuntimeMethod* method)
{
{
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_0 = ___value0;
__this->set_m_GlyphRect_2(L_0);
return;
}
}
// System.Single UnityEngine.TextCore.Glyph::get_scale()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Glyph_get_scale_m446CB523D55E31B00D8AC704A60308C773E7F208 (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_Scale_3();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.TextCore.Glyph::set_scale(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph_set_scale_m576BAC2DABBBDDAEB8B84BEB4A0780BC00D90753 (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
__this->set_m_Scale_3(L_0);
return;
}
}
// System.Int32 UnityEngine.TextCore.Glyph::get_atlasIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Glyph_get_atlasIndex_m6538243B8852D859DE81213EDC5A9FDD837909EF (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_AtlasIndex_4();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.TextCore.Glyph::set_atlasIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph_set_atlasIndex_m9994675326C6545B78A3CD5CC4A534D597195A3B (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_m_AtlasIndex_4(L_0);
return;
}
}
// System.Void UnityEngine.TextCore.Glyph::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph__ctor_m3B14665C4F129AA87DC0FBF1D8E5274729840076 (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
__this->set_m_Index_0(0);
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * L_0 = __this->get_address_of_m_Metrics_1();
il2cpp_codegen_initobj(L_0, sizeof(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B ));
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * L_1 = __this->get_address_of_m_GlyphRect_2();
il2cpp_codegen_initobj(L_1, sizeof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ));
__this->set_m_Scale_3((1.0f));
__this->set_m_AtlasIndex_4(0);
return;
}
}
// System.Void UnityEngine.TextCore.Glyph::.ctor(UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph__ctor_m926A82734800BFA828FFB469B956F563FF0F1994 (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 ___glyphStruct0, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 L_0 = ___glyphStruct0;
uint32_t L_1 = L_0.get_index_0();
__this->set_m_Index_0(L_1);
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 L_2 = ___glyphStruct0;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_3 = L_2.get_metrics_1();
__this->set_m_Metrics_1(L_3);
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 L_4 = ___glyphStruct0;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_5 = L_4.get_glyphRect_2();
__this->set_m_GlyphRect_2(L_5);
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 L_6 = ___glyphStruct0;
float L_7 = L_6.get_scale_3();
__this->set_m_Scale_3(L_7);
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 L_8 = ___glyphStruct0;
int32_t L_9 = L_8.get_atlasIndex_4();
__this->set_m_AtlasIndex_4(L_9);
return;
}
}
// System.Void UnityEngine.TextCore.Glyph::.ctor(System.UInt32,UnityEngine.TextCore.GlyphMetrics,UnityEngine.TextCore.GlyphRect,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Glyph__ctor_m3B1336D6A76FF3C315E66EC5857E378D7BE50DE2 (Glyph_tC58ED6BC718B82A55B7E1A3690A289FFA8EBEFD1 * __this, uint32_t ___index0, GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B ___metrics1, GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___glyphRect2, float ___scale3, int32_t ___atlasIndex4, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
uint32_t L_0 = ___index0;
__this->set_m_Index_0(L_0);
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_1 = ___metrics1;
__this->set_m_Metrics_1(L_1);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_2 = ___glyphRect2;
__this->set_m_GlyphRect_2(L_2);
float L_3 = ___scale3;
__this->set_m_Scale_3(L_3);
int32_t L_4 = ___atlasIndex4;
__this->set_m_AtlasIndex_4(L_4);
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.UInt32 UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord::get_glyphIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlyphAdjustmentRecord_get_glyphIndex_mCD420C739E19E446152534AFA80A6113C0DBCC55 (GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_GlyphIndex_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t GlyphAdjustmentRecord_get_glyphIndex_mCD420C739E19E446152534AFA80A6113C0DBCC55_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA * _thisAdjusted = reinterpret_cast<GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA *>(__this + _offset);
uint32_t _returnValue;
_returnValue = GlyphAdjustmentRecord_get_glyphIndex_mCD420C739E19E446152534AFA80A6113C0DBCC55(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.TextCore.LowLevel.GlyphValueRecord UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord::get_glyphValueRecord()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 GlyphAdjustmentRecord_get_glyphValueRecord_mAC27920271FB7166EE305BACE1D595CAA57872EE (GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA * __this, const RuntimeMethod* method)
{
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 V_0;
memset((&V_0), 0, sizeof(V_0));
{
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 L_0 = __this->get_m_GlyphValueRecord_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 GlyphAdjustmentRecord_get_glyphValueRecord_mAC27920271FB7166EE305BACE1D595CAA57872EE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA * _thisAdjusted = reinterpret_cast<GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA *>(__this + _offset);
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 _returnValue;
_returnValue = GlyphAdjustmentRecord_get_glyphValueRecord_mAC27920271FB7166EE305BACE1D595CAA57872EE(_thisAdjusted, method);
return _returnValue;
}
#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
// System.Single UnityEngine.TextCore.GlyphMetrics::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_width_m4E2BCD2B54F121478C1D23C43FB6E8C0EF71C70F (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_Width_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float GlyphMetrics_get_width_m4E2BCD2B54F121478C1D23C43FB6E8C0EF71C70F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * _thisAdjusted = reinterpret_cast<GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B *>(__this + _offset);
float _returnValue;
_returnValue = GlyphMetrics_get_width_m4E2BCD2B54F121478C1D23C43FB6E8C0EF71C70F(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.TextCore.GlyphMetrics::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_height_m742B169DCF2892774ACEC4F25310CDC0C7F1D85F (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_Height_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float GlyphMetrics_get_height_m742B169DCF2892774ACEC4F25310CDC0C7F1D85F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * _thisAdjusted = reinterpret_cast<GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B *>(__this + _offset);
float _returnValue;
_returnValue = GlyphMetrics_get_height_m742B169DCF2892774ACEC4F25310CDC0C7F1D85F(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.TextCore.GlyphMetrics::get_horizontalBearingX()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_horizontalBearingX_m8474B6C9DB0D4D36516FCAC03B6ECBDAF49247E0 (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_HorizontalBearingX_2();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float GlyphMetrics_get_horizontalBearingX_m8474B6C9DB0D4D36516FCAC03B6ECBDAF49247E0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * _thisAdjusted = reinterpret_cast<GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B *>(__this + _offset);
float _returnValue;
_returnValue = GlyphMetrics_get_horizontalBearingX_m8474B6C9DB0D4D36516FCAC03B6ECBDAF49247E0(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.TextCore.GlyphMetrics::get_horizontalBearingY()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_horizontalBearingY_m2C5A73B899AFF5F5F594F447160ADB6E0523C16A (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_HorizontalBearingY_3();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float GlyphMetrics_get_horizontalBearingY_m2C5A73B899AFF5F5F594F447160ADB6E0523C16A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * _thisAdjusted = reinterpret_cast<GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B *>(__this + _offset);
float _returnValue;
_returnValue = GlyphMetrics_get_horizontalBearingY_m2C5A73B899AFF5F5F594F447160ADB6E0523C16A(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.TextCore.GlyphMetrics::get_horizontalAdvance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphMetrics_get_horizontalAdvance_mB204F2676223D5BEF5FEFF8969B159B39F1A617A (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_HorizontalAdvance_4();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float GlyphMetrics_get_horizontalAdvance_mB204F2676223D5BEF5FEFF8969B159B39F1A617A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * _thisAdjusted = reinterpret_cast<GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B *>(__this + _offset);
float _returnValue;
_returnValue = GlyphMetrics_get_horizontalAdvance_mB204F2676223D5BEF5FEFF8969B159B39F1A617A(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.GlyphMetrics::.ctor(System.Single,System.Single,System.Single,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphMetrics__ctor_m6146EC37C12EF153771AEF9983A63B5EBAE0CEFB (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, float ___width0, float ___height1, float ___bearingX2, float ___bearingY3, float ___advance4, const RuntimeMethod* method)
{
{
float L_0 = ___width0;
__this->set_m_Width_0(L_0);
float L_1 = ___height1;
__this->set_m_Height_1(L_1);
float L_2 = ___bearingX2;
__this->set_m_HorizontalBearingX_2(L_2);
float L_3 = ___bearingY3;
__this->set_m_HorizontalBearingY_3(L_3);
float L_4 = ___advance4;
__this->set_m_HorizontalAdvance_4(L_4);
return;
}
}
IL2CPP_EXTERN_C void GlyphMetrics__ctor_m6146EC37C12EF153771AEF9983A63B5EBAE0CEFB_AdjustorThunk (RuntimeObject * __this, float ___width0, float ___height1, float ___bearingX2, float ___bearingY3, float ___advance4, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * _thisAdjusted = reinterpret_cast<GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B *>(__this + _offset);
GlyphMetrics__ctor_m6146EC37C12EF153771AEF9983A63B5EBAE0CEFB(_thisAdjusted, ___width0, ___height1, ___bearingX2, ___bearingY3, ___advance4, method);
}
// System.Int32 UnityEngine.TextCore.GlyphMetrics::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphMetrics_GetHashCode_m4F7985D656AFB70AE746F9A2513D39D3DFF9CD73 (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_0 = (*(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B *)__this);
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_1 = L_0;
RuntimeObject * L_2 = Box(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B_il2cpp_TypeInfo_var, &L_1);
NullCheck((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2);
int32_t L_3;
L_3 = ValueType_GetHashCode_mE3FC55FA0D7099043434B9F8F0A4B30C8B63BFF4((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_0014;
}
IL_0014:
{
int32_t L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C int32_t GlyphMetrics_GetHashCode_m4F7985D656AFB70AE746F9A2513D39D3DFF9CD73_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * _thisAdjusted = reinterpret_cast<GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B *>(__this + _offset);
int32_t _returnValue;
_returnValue = GlyphMetrics_GetHashCode_m4F7985D656AFB70AE746F9A2513D39D3DFF9CD73(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.TextCore.GlyphMetrics::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphMetrics_Equals_mCCF68C73B7AE05D97A0D4459384DABD8BEB1097F (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_0 = (*(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B *)__this);
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_1 = L_0;
RuntimeObject * L_2 = Box(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B_il2cpp_TypeInfo_var, &L_1);
RuntimeObject * L_3 = ___obj0;
NullCheck((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2);
bool L_4;
L_4 = ValueType_Equals_mA46F77D37929939A917B1BF63B55071714034354((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_0015;
}
IL_0015:
{
bool L_5 = V_0;
return L_5;
}
}
IL2CPP_EXTERN_C bool GlyphMetrics_Equals_mCCF68C73B7AE05D97A0D4459384DABD8BEB1097F_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * _thisAdjusted = reinterpret_cast<GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B *>(__this + _offset);
bool _returnValue;
_returnValue = GlyphMetrics_Equals_mCCF68C73B7AE05D97A0D4459384DABD8BEB1097F(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.TextCore.GlyphMetrics::Equals(UnityEngine.TextCore.GlyphMetrics)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphMetrics_Equals_m54C8D6CAD2653668377F5F7A9F78FD7C4F05E4A8 (GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * __this, GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_0 = (*(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B *)__this);
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_1 = L_0;
RuntimeObject * L_2 = Box(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B_il2cpp_TypeInfo_var, &L_1);
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_3 = ___other0;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B L_4 = L_3;
RuntimeObject * L_5 = Box(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B_il2cpp_TypeInfo_var, &L_4);
NullCheck((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2);
bool L_6;
L_6 = ValueType_Equals_mA46F77D37929939A917B1BF63B55071714034354((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2, L_5, /*hidden argument*/NULL);
V_0 = L_6;
goto IL_001a;
}
IL_001a:
{
bool L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C bool GlyphMetrics_Equals_m54C8D6CAD2653668377F5F7A9F78FD7C4F05E4A8_AdjustorThunk (RuntimeObject * __this, GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * _thisAdjusted = reinterpret_cast<GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B *>(__this + _offset);
bool _returnValue;
_returnValue = GlyphMetrics_Equals_m54C8D6CAD2653668377F5F7A9F78FD7C4F05E4A8(_thisAdjusted, ___other0, method);
return _returnValue;
}
#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
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::get_firstAdjustmentRecord()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA GlyphPairAdjustmentRecord_get_firstAdjustmentRecord_m92BC7561227D482635EF8AB93B8F20808017FBF8 (GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 * __this, const RuntimeMethod* method)
{
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA V_0;
memset((&V_0), 0, sizeof(V_0));
{
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA L_0 = __this->get_m_FirstAdjustmentRecord_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA GlyphPairAdjustmentRecord_get_firstAdjustmentRecord_m92BC7561227D482635EF8AB93B8F20808017FBF8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 * _thisAdjusted = reinterpret_cast<GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 *>(__this + _offset);
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA _returnValue;
_returnValue = GlyphPairAdjustmentRecord_get_firstAdjustmentRecord_m92BC7561227D482635EF8AB93B8F20808017FBF8(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::get_secondAdjustmentRecord()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA GlyphPairAdjustmentRecord_get_secondAdjustmentRecord_m488CCBCB6802727334E2135E65EBB027A0A01EAD (GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 * __this, const RuntimeMethod* method)
{
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA V_0;
memset((&V_0), 0, sizeof(V_0));
{
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA L_0 = __this->get_m_SecondAdjustmentRecord_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA GlyphPairAdjustmentRecord_get_secondAdjustmentRecord_m488CCBCB6802727334E2135E65EBB027A0A01EAD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 * _thisAdjusted = reinterpret_cast<GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 *>(__this + _offset);
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA _returnValue;
_returnValue = GlyphPairAdjustmentRecord_get_secondAdjustmentRecord_m488CCBCB6802727334E2135E65EBB027A0A01EAD(_thisAdjusted, method);
return _returnValue;
}
#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.TextCore.GlyphRect::get_x()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_x_m004398D85360A389BCCD4F8B38347C0555F86166 (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_X_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t GlyphRect_get_x_m004398D85360A389BCCD4F8B38347C0555F86166_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * _thisAdjusted = reinterpret_cast<GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *>(__this + _offset);
int32_t _returnValue;
_returnValue = GlyphRect_get_x_m004398D85360A389BCCD4F8B38347C0555F86166(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.TextCore.GlyphRect::get_y()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_y_mBF2FC84CB7B201F30376B46390D37887B6AD6C20 (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_Y_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t GlyphRect_get_y_mBF2FC84CB7B201F30376B46390D37887B6AD6C20_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * _thisAdjusted = reinterpret_cast<GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *>(__this + _offset);
int32_t _returnValue;
_returnValue = GlyphRect_get_y_mBF2FC84CB7B201F30376B46390D37887B6AD6C20(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.TextCore.GlyphRect::get_width()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_width_m8B9FBFA897082BA8E5F71222E1AAAB8D4A345A41 (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_Width_2();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t GlyphRect_get_width_m8B9FBFA897082BA8E5F71222E1AAAB8D4A345A41_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * _thisAdjusted = reinterpret_cast<GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *>(__this + _offset);
int32_t _returnValue;
_returnValue = GlyphRect_get_width_m8B9FBFA897082BA8E5F71222E1AAAB8D4A345A41(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.TextCore.GlyphRect::get_height()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_get_height_m319E96AD96E2087C9C9F5A1DF883F06A4D04104F (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_Height_3();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t GlyphRect_get_height_m319E96AD96E2087C9C9F5A1DF883F06A4D04104F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * _thisAdjusted = reinterpret_cast<GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *>(__this + _offset);
int32_t _returnValue;
_returnValue = GlyphRect_get_height_m319E96AD96E2087C9C9F5A1DF883F06A4D04104F(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.GlyphRect::get_zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D GlyphRect_get_zero_m4F82533B1FF0E143D6CEB594F68254D925879229 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D V_0;
memset((&V_0), 0, sizeof(V_0));
{
IL2CPP_RUNTIME_CLASS_INIT(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_0 = ((GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_StaticFields*)il2cpp_codegen_static_fields_for(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var))->get_s_ZeroGlyphRect_4();
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.TextCore.GlyphRect::.ctor(System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphRect__ctor_m278B410AE9B6DE62FF8C2445B8F3C6051B45ED61 (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, int32_t ___x0, int32_t ___y1, int32_t ___width2, int32_t ___height3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___x0;
__this->set_m_X_0(L_0);
int32_t L_1 = ___y1;
__this->set_m_Y_1(L_1);
int32_t L_2 = ___width2;
__this->set_m_Width_2(L_2);
int32_t L_3 = ___height3;
__this->set_m_Height_3(L_3);
return;
}
}
IL2CPP_EXTERN_C void GlyphRect__ctor_m278B410AE9B6DE62FF8C2445B8F3C6051B45ED61_AdjustorThunk (RuntimeObject * __this, int32_t ___x0, int32_t ___y1, int32_t ___width2, int32_t ___height3, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * _thisAdjusted = reinterpret_cast<GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *>(__this + _offset);
GlyphRect__ctor_m278B410AE9B6DE62FF8C2445B8F3C6051B45ED61(_thisAdjusted, ___x0, ___y1, ___width2, ___height3, method);
}
// System.Int32 UnityEngine.TextCore.GlyphRect::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphRect_GetHashCode_m6DC4515E8C489593A329B5EA66895BD8C25DF913 (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_0 = (*(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *)__this);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_1 = L_0;
RuntimeObject * L_2 = Box(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var, &L_1);
NullCheck((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2);
int32_t L_3;
L_3 = ValueType_GetHashCode_mE3FC55FA0D7099043434B9F8F0A4B30C8B63BFF4((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_0014;
}
IL_0014:
{
int32_t L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C int32_t GlyphRect_GetHashCode_m6DC4515E8C489593A329B5EA66895BD8C25DF913_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * _thisAdjusted = reinterpret_cast<GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *>(__this + _offset);
int32_t _returnValue;
_returnValue = GlyphRect_GetHashCode_m6DC4515E8C489593A329B5EA66895BD8C25DF913(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.TextCore.GlyphRect::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphRect_Equals_m7F1DB9A21E584BEF84C5F83E6DD290EF54D655C1 (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_0 = (*(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *)__this);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_1 = L_0;
RuntimeObject * L_2 = Box(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var, &L_1);
RuntimeObject * L_3 = ___obj0;
NullCheck((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2);
bool L_4;
L_4 = ValueType_Equals_mA46F77D37929939A917B1BF63B55071714034354((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_0015;
}
IL_0015:
{
bool L_5 = V_0;
return L_5;
}
}
IL2CPP_EXTERN_C bool GlyphRect_Equals_m7F1DB9A21E584BEF84C5F83E6DD290EF54D655C1_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * _thisAdjusted = reinterpret_cast<GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *>(__this + _offset);
bool _returnValue;
_returnValue = GlyphRect_Equals_m7F1DB9A21E584BEF84C5F83E6DD290EF54D655C1(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.TextCore.GlyphRect::Equals(UnityEngine.TextCore.GlyphRect)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphRect_Equals_mB9F911262F09BC42CD2A461D8692D1C3ECAFCDCE (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * __this, GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_0 = (*(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *)__this);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_1 = L_0;
RuntimeObject * L_2 = Box(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var, &L_1);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_3 = ___other0;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_4 = L_3;
RuntimeObject * L_5 = Box(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var, &L_4);
NullCheck((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2);
bool L_6;
L_6 = ValueType_Equals_mA46F77D37929939A917B1BF63B55071714034354((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2, L_5, /*hidden argument*/NULL);
V_0 = L_6;
goto IL_001a;
}
IL_001a:
{
bool L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C bool GlyphRect_Equals_mB9F911262F09BC42CD2A461D8692D1C3ECAFCDCE_AdjustorThunk (RuntimeObject * __this, GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * _thisAdjusted = reinterpret_cast<GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *>(__this + _offset);
bool _returnValue;
_returnValue = GlyphRect_Equals_mB9F911262F09BC42CD2A461D8692D1C3ECAFCDCE(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Void UnityEngine.TextCore.GlyphRect::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlyphRect__cctor_mC0A746562E15F7DB07264227927E7B9276FA5A9B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_0;
memset((&L_0), 0, sizeof(L_0));
GlyphRect__ctor_m278B410AE9B6DE62FF8C2445B8F3C6051B45ED61((&L_0), 0, 0, 0, 0, /*hidden argument*/NULL);
((GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_StaticFields*)il2cpp_codegen_static_fields_for(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_il2cpp_TypeInfo_var))->set_s_ZeroGlyphRect_4(L_0);
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.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::get_xPlacement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_xPlacement_mAC5902DE9EE01D98DE9FBC6DB3A8BA7CDC525D14 (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_XPlacement_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float GlyphValueRecord_get_xPlacement_mAC5902DE9EE01D98DE9FBC6DB3A8BA7CDC525D14_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * _thisAdjusted = reinterpret_cast<GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 *>(__this + _offset);
float _returnValue;
_returnValue = GlyphValueRecord_get_xPlacement_mAC5902DE9EE01D98DE9FBC6DB3A8BA7CDC525D14(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::get_yPlacement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_yPlacement_m624E2DA69CC5A21117EE275359F66AF88DFC7D2D (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_YPlacement_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float GlyphValueRecord_get_yPlacement_m624E2DA69CC5A21117EE275359F66AF88DFC7D2D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * _thisAdjusted = reinterpret_cast<GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 *>(__this + _offset);
float _returnValue;
_returnValue = GlyphValueRecord_get_yPlacement_m624E2DA69CC5A21117EE275359F66AF88DFC7D2D(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::get_xAdvance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_xAdvance_m577D4D32490C42890C3F15230479D931B91BDED5 (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_XAdvance_2();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float GlyphValueRecord_get_xAdvance_m577D4D32490C42890C3F15230479D931B91BDED5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * _thisAdjusted = reinterpret_cast<GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 *>(__this + _offset);
float _returnValue;
_returnValue = GlyphValueRecord_get_xAdvance_m577D4D32490C42890C3F15230479D931B91BDED5(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::get_yAdvance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GlyphValueRecord_get_yAdvance_m9659978FFA9B58B6AA7DE30199E405CF642BA34F (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_YAdvance_3();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float GlyphValueRecord_get_yAdvance_m9659978FFA9B58B6AA7DE30199E405CF642BA34F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * _thisAdjusted = reinterpret_cast<GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 *>(__this + _offset);
float _returnValue;
_returnValue = GlyphValueRecord_get_yAdvance_m9659978FFA9B58B6AA7DE30199E405CF642BA34F(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.TextCore.LowLevel.GlyphValueRecord::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlyphValueRecord_GetHashCode_m5700595527E17C02B923199180E8983105563A71 (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 L_0 = (*(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 *)__this);
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 L_1 = L_0;
RuntimeObject * L_2 = Box(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3_il2cpp_TypeInfo_var, &L_1);
NullCheck((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2);
int32_t L_3;
L_3 = ValueType_GetHashCode_mE3FC55FA0D7099043434B9F8F0A4B30C8B63BFF4((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_0014;
}
IL_0014:
{
int32_t L_4 = V_0;
return L_4;
}
}
IL2CPP_EXTERN_C int32_t GlyphValueRecord_GetHashCode_m5700595527E17C02B923199180E8983105563A71_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * _thisAdjusted = reinterpret_cast<GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 *>(__this + _offset);
int32_t _returnValue;
_returnValue = GlyphValueRecord_GetHashCode_m5700595527E17C02B923199180E8983105563A71(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.TextCore.LowLevel.GlyphValueRecord::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphValueRecord_Equals_mB12EE7C56E781B2DAFF2DEA1AFFFA1EC4DCBA943 (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 L_0 = (*(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 *)__this);
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 L_1 = L_0;
RuntimeObject * L_2 = Box(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3_il2cpp_TypeInfo_var, &L_1);
RuntimeObject * L_3 = ___obj0;
NullCheck((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2);
bool L_4;
L_4 = ValueType_Equals_mA46F77D37929939A917B1BF63B55071714034354((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_0015;
}
IL_0015:
{
bool L_5 = V_0;
return L_5;
}
}
IL2CPP_EXTERN_C bool GlyphValueRecord_Equals_mB12EE7C56E781B2DAFF2DEA1AFFFA1EC4DCBA943_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * _thisAdjusted = reinterpret_cast<GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 *>(__this + _offset);
bool _returnValue;
_returnValue = GlyphValueRecord_Equals_mB12EE7C56E781B2DAFF2DEA1AFFFA1EC4DCBA943(_thisAdjusted, ___obj0, method);
return _returnValue;
}
// System.Boolean UnityEngine.TextCore.LowLevel.GlyphValueRecord::Equals(UnityEngine.TextCore.LowLevel.GlyphValueRecord)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphValueRecord_Equals_m716F55BA3DD7B7E97F3E35BE94A5922BE90FECF4 (GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * __this, GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 L_0 = (*(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 *)__this);
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 L_1 = L_0;
RuntimeObject * L_2 = Box(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3_il2cpp_TypeInfo_var, &L_1);
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 L_3 = ___other0;
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 L_4 = L_3;
RuntimeObject * L_5 = Box(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3_il2cpp_TypeInfo_var, &L_4);
NullCheck((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2);
bool L_6;
L_6 = ValueType_Equals_mA46F77D37929939A917B1BF63B55071714034354((ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 *)L_2, L_5, /*hidden argument*/NULL);
V_0 = L_6;
goto IL_001a;
}
IL_001a:
{
bool L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C bool GlyphValueRecord_Equals_m716F55BA3DD7B7E97F3E35BE94A5922BE90FECF4_AdjustorThunk (RuntimeObject * __this, GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * _thisAdjusted = reinterpret_cast<GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 *>(__this + _offset);
bool _returnValue;
_returnValue = GlyphValueRecord_Equals_m716F55BA3DD7B7E97F3E35BE94A5922BE90FECF4(_thisAdjusted, ___other0, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Profiler_BeginSample_m72E4BD9503BC991BAFAED992FF1CA4504C741865_inline (String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
Profiler_ValidateArguments_mBD8BD2520B428CBAA924D27613F9F0BB5D9C4512_inline(L_0, /*hidden argument*/NULL);
String_t* L_1 = ___name0;
Profiler_BeginSampleImpl_mF1EE2C3EB23D01B3F9A25C43C8BC82BFC4F3B5A0(L_1, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m3A6B7533185FE0E994960D5DB16D0BCDFAD9139A_gshared_inline (List_1_tE870449A6BC21548542BC92F18B284004FA8668A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D List_1_get_Item_m6C3D0193E97367A21FA4FA8F18CB026A9B5A4751_gshared_inline (List_1_tE870449A6BC21548542BC92F18B284004FA8668A * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_2();
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL);
}
IL_000e:
{
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_2 = (GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)__this->get__items_1();
int32_t L_3 = ___index0;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_4;
L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)L_2, (int32_t)L_3);
return (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D )L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m70BC2BBCAA532A1588DB59CA7E556F541F32621D_gshared_inline (List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t List_1_get_Item_m31E439898C27BC917E851D5219B3EC4E53618ADE_gshared_inline (List_1_t023026A8F0D0D113E2B62213C8C74717BF7F4731 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_2();
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL);
}
IL_000e:
{
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_2 = (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)__this->get__items_1();
int32_t L_3 = ___index0;
uint32_t L_4;
L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)L_2, (int32_t)L_3);
return (uint32_t)L_4;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Profiler_ValidateArguments_mBD8BD2520B428CBAA924D27613F9F0BB5D9C4512_inline (String_t* ___name0, const RuntimeMethod* method)
{
bool V_0 = false;
{
String_t* L_0 = ___name0;
bool L_1;
L_1 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_0, /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_001c;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral31D159E683556C06B3B3963D92483B6867EB3233)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Profiler_ValidateArguments_mBD8BD2520B428CBAA924D27613F9F0BB5D9C4512_RuntimeMethod_var)));
}
IL_001c:
{
return;
}
}