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
#[repr(C)]
#[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct __BindgenBitfieldUnit<Storage> {
storage: Storage,
}
impl<Storage> __BindgenBitfieldUnit<Storage> {
#[inline]
pub const fn new(storage: Storage) -> Self {
Self { storage }
}
}
impl<Storage> __BindgenBitfieldUnit<Storage>
where
Storage: AsRef<[u8]> + AsMut<[u8]>,
{
#[inline]
pub fn get_bit(&self, index: usize) -> bool {
debug_assert!(index / 8 < self.storage.as_ref().len());
let byte_index = index / 8;
let byte = self.storage.as_ref()[byte_index];
let bit_index = if cfg!(target_endian = "big") {
7 - (index % 8)
} else {
index % 8
};
let mask = 1 << bit_index;
byte & mask == mask
}
#[inline]
pub fn set_bit(&mut self, index: usize, val: bool) {
debug_assert!(index / 8 < self.storage.as_ref().len());
let byte_index = index / 8;
let byte = &mut self.storage.as_mut()[byte_index];
let bit_index = if cfg!(target_endian = "big") {
7 - (index % 8)
} else {
index % 8
};
let mask = 1 << bit_index;
if val {
*byte |= mask;
} else {
*byte &= !mask;
}
}
#[inline]
pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 {
debug_assert!(bit_width <= 64);
debug_assert!(bit_offset / 8 < self.storage.as_ref().len());
debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len());
let mut val = 0;
for i in 0..(bit_width as usize) {
if self.get_bit(i + bit_offset) {
let index = if cfg!(target_endian = "big") {
bit_width as usize - 1 - i
} else {
i
};
val |= 1 << index;
}
}
val
}
#[inline]
pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) {
debug_assert!(bit_width <= 64);
debug_assert!(bit_offset / 8 < self.storage.as_ref().len());
debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len());
for i in 0..(bit_width as usize) {
let mask = 1 << i;
let val_bit_is_set = val & mask == mask;
let index = if cfg!(target_endian = "big") {
bit_width as usize - 1 - i
} else {
i
};
self.set_bit(index + bit_offset, val_bit_is_set);
}
}
}
pub const __SAL_H_VERSION: u32 = 180000000;
pub const __bool_true_false_are_defined: u32 = 1;
pub const TM_TYPE__CREATION_GRAPH__INSTANCE: &'static [u8; 27usize] =
b"tm_creation_graph_instance\0";
pub const TM_CREATION_GRAPH_NODE_INTERFACE_NAME: &'static [u8; 33usize] =
b"tm_creation_graph_node_interface\0";
pub const TM_CREATION_GRAPH_IO_TYPE_INTERFACE_NAME: &'static [u8; 36usize] =
b"tm_creation_graph_io_type_interface\0";
pub const TM_CREATION_GRAPH_OUTPUT_NODE_TYPE_INTERFACE_NAME: &'static [u8; 45usize] =
b"tm_creation_graph_output_node_type_interface\0";
pub const TM_CREATION_GRAPH_COMPILE_DATA_TO_WIRE_INTERFACE_NAME: &'static [u8; 49usize] =
b"tm_creation_graph_compile_data_to_wire_interface\0";
pub const TM_TT_TYPE__CREATION_GRAPH: &'static [u8; 18usize] = b"tm_creation_graph\0";
pub const TM_TT_TYPE__CREATION_GRAPH__RESOURCE_REFERENCE: &'static [u8; 37usize] =
b"tm_creation_graph_resource_reference\0";
pub const TM_CREATION_GRAPH_PREVIEW_INTERFACE_NAME: &'static [u8; 28usize] =
b"tm_creation_graph_preview_i\0";
pub const TM_CREATION_GRAPH_API_NAME: &'static [u8; 22usize] = b"tm_creation_graph_api\0";
pub const TM_CREATION_GRAPH_INTERPRETER_API_NAME: &'static [u8; 34usize] =
b"tm_creation_graph_interpreter_api\0";
pub const TM_TT_TYPE__IMAGE_MIPMAP_SETTINGS: &'static [u8; 19usize] = b"tm_mipmap_settings\0";
pub const TM_TT_TYPE__IMAGE_DESCRIPTION: &'static [u8; 21usize] = b"tm_image_description\0";
pub const TM_TT_TYPE__IMAGE_ARCHIVE: &'static [u8; 17usize] = b"tm_image_archive\0";
pub const TM_CREATION_GRAPH__IMAGE__OUTPUT_NODE: &'static [u8; 13usize] = b"image_output\0";
pub const TM_CREATION_GRAPH__SHADER_INSTANCE_OUTPUT: &'static [u8; 26usize] =
b"tm_shader_instance_output\0";
pub const TM_CREATION_GRAPH__BOUNDING_VOLUME: &'static [u8; 16usize] = b"bounding_volume\0";
pub const TM_CREATION_GRAPH__DRAW_CALL: &'static [u8; 9usize] = b"drawcall\0";
pub const TM_CREATION_GRAPH__PHYSICS_SHAPE__OUTPUT_NODE: &'static [u8; 14usize] =
b"physics_shape\0";
pub const TM_CREATION_GRAPH__RAY_TRACE_INSTANCE: &'static [u8; 19usize] = b"ray_trace_instance\0";
extern "C" {
pub fn __va_start(arg1: *mut *mut ::std::os::raw::c_char, ...);
}
pub type __vcrt_bool = bool;
extern "C" {
pub fn __security_init_cookie();
}
extern "C" {
pub fn __security_check_cookie(_StackCookie: usize);
}
extern "C" {
pub fn __report_gsfailure(_StackCookie: usize);
}
extern "C" {
pub static mut __security_cookie: usize;
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union TtIdTBindgenTy1 {
pub u64_: u64,
pub __bindgen_anon_1: TtIdTBindgenTy1BindgenTy1,
}
#[repr(C)]
#[repr(align(8))]
#[derive(Default, Copy, Clone)]
pub struct TtIdTBindgenTy1BindgenTy1 {
pub _bitfield_align_1: [u32; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
}
impl TtIdTBindgenTy1BindgenTy1 {
#[inline]
pub fn type_(&self) -> u64 {
unsafe { ::std::mem::transmute(self._bitfield_1.get(0usize, 10u8) as u64) }
}
#[inline]
pub fn set_type(&mut self, val: u64) {
unsafe {
let val: u64 = ::std::mem::transmute(val);
self._bitfield_1.set(0usize, 10u8, val as u64)
}
}
#[inline]
pub fn generation(&self) -> u64 {
unsafe { ::std::mem::transmute(self._bitfield_1.get(10usize, 22u8) as u64) }
}
#[inline]
pub fn set_generation(&mut self, val: u64) {
unsafe {
let val: u64 = ::std::mem::transmute(val);
self._bitfield_1.set(10usize, 22u8, val as u64)
}
}
#[inline]
pub fn index(&self) -> u64 {
unsafe { ::std::mem::transmute(self._bitfield_1.get(32usize, 32u8) as u64) }
}
#[inline]
pub fn set_index(&mut self, val: u64) {
unsafe {
let val: u64 = ::std::mem::transmute(val);
self._bitfield_1.set(32usize, 32u8, val as u64)
}
}
#[inline]
pub fn new_bitfield_1(
type_: u64,
generation: u64,
index: u64,
) -> __BindgenBitfieldUnit<[u8; 8usize]> {
let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
__bindgen_bitfield_unit.set(0usize, 10u8, {
let type_: u64 = unsafe { ::std::mem::transmute(type_) };
type_ as u64
});
__bindgen_bitfield_unit.set(10usize, 22u8, {
let generation: u64 = unsafe { ::std::mem::transmute(generation) };
generation as u64
});
__bindgen_bitfield_unit.set(32usize, 32u8, {
let index: u64 = unsafe { ::std::mem::transmute(index) };
index as u64
});
__bindgen_bitfield_unit
}
}
impl Default for TtIdTBindgenTy1 {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
pub struct CreationGraphOutputNodeTypeT {
pub node_name_hash: StrhashT,
pub display_name: *const ::std::os::raw::c_char,
pub asset_label: *const AssetLabelT,
pub size: u64,
pub write_wire: ::std::option::Option<
unsafe extern "C" fn(
ctx: *mut CreationGraphInterpreterContextT,
wire: u32,
data: *const ::std::os::raw::c_void,
),
>,
pub create_thumbnail: ::std::option::Option<
unsafe extern "C" fn(
data: *const ::std::os::raw::c_void,
thumbnail_desc: *const RendererImageDescT,
rb: *mut RendererBackendI,
res_buf: *mut RendererResourceCommandBufferO,
cmd_buf: *mut RendererCommandBufferO,
res: *mut RendererHandleT,
),
>,
}
impl Default for CreationGraphOutputNodeTypeT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
pub struct CreationGraphOutputWireT {
pub id: StrhashT,
pub name: StrhashT,
pub type_hash: StrhashT,
pub wire: u32,
pub _padding_79: [::std::os::raw::c_char; 4usize],
}
impl Default for CreationGraphOutputWireT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
pub struct CreationGraphInputT {
pub name: StrhashT,
pub id: StrhashT,
pub type_: StrhashT,
pub value: *mut ::std::os::raw::c_void,
pub value_size: u32,
pub wire: u32,
}
impl Default for CreationGraphInputT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct CreationGraphIoDataT {
pub allocator: *mut AllocatorI,
pub output_node_types: *mut CreationGraphOutputNodeTypeT,
pub output_data: *mut *mut u8,
pub output_wires: *mut CreationGraphOutputWireT,
pub consumers: *mut CreationGraphInstanceT,
pub inputs: *mut CreationGraphInputT,
pub dirty: bool,
pub _padding_113: [::std::os::raw::c_char; 7usize],
}
impl Default for CreationGraphIoDataT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union EntityT {
pub __bindgen_anon_1: EntityTBindgenTy1,
pub u64_: u64,
}
#[repr(C)]
#[derive(Default, Copy, Clone)]
pub struct EntityTBindgenTy1 {
pub index: u32,
pub generation: u32,
}
impl Default for EntityT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct CreationGraphNodeCacheT {
_unused: [u8; 0],
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct CreationGraphBoundingVolumeDataT {
_unused: [u8; 0],
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct CreationGraphImageDataT {
_unused: [u8; 0],
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct SetIdT {
_unused: [u8; 0],
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct CreationGraphBlackboardValueT {
_unused: [u8; 0],
}
pub type CompileDataToWireF = ::std::option::Option<
unsafe extern "C" fn(
rc: *mut CreationGraphInstanceT,
wire: u32,
tt: *const TheTruthO,
data_id: TtIdT,
to_type_hash: StrhashT,
) -> bool,
>;
pub const TM_TT_PROP__CREATION_GRAPH__GRAPH: ::std::os::raw::c_int = 0;
pub type _bindgen_ty_1 = ::std::os::raw::c_int;
pub const TM_TT_PROP__CREATION_GRAPH__RESOURCE_REFERENCE__CREATION_GRAPH: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__CREATION_GRAPH__RESOURCE_REFERENCE__OUTPUT_NODE_TYPE_HASH:
::std::os::raw::c_int = 1;
pub const TM_TT_PROP__CREATION_GRAPH__RESOURCE_REFERENCE__OUTPUT_NODE_NAME: ::std::os::raw::c_int =
2;
pub type _bindgen_ty_2 = ::std::os::raw::c_int;
#[repr(C)]
#[derive(Default, Copy, Clone)]
pub struct CreationGraphDestroyInstanceContextT {
pub manager_shutdown: bool,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct CreationGraphTickContextT {
pub dt: f32,
pub _padding_119: [::std::os::raw::c_char; 4usize],
pub shader_context: *mut ShaderSystemContextO,
}
impl Default for CreationGraphTickContextT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
pub struct CreationGraphViewportInteractContextT {
pub viewport: RectT,
pub transform: *const TransformT,
pub input: *mut UiInputStateT,
pub camera: *mut CameraT,
pub render_graph: *mut RenderGraphO,
pub shader_context: *const ShaderSystemContextO,
pub undo_stack: *mut UndoStackI,
}
impl Default for CreationGraphViewportInteractContextT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
pub const TM_CREATION_GRAPH_MAX_OUTPUT_NODE_TYPES: ::std::os::raw::c_int = 32;
pub type _bindgen_ty_3 = ::std::os::raw::c_int;
#[repr(C)]
pub struct CreationGraphAllOutputsT {
pub version: u64,
pub num_output_node_types: u32,
pub _padding_191: [::std::os::raw::c_char; 4usize],
pub output_node_type_hashes: [StrhashT; 32usize],
pub output_node_type_display_names: [*const ::std::os::raw::c_char; 32usize],
}
impl Default for CreationGraphAllOutputsT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
pub struct CreationGraphNamedOutputT {
pub data: *mut ::std::os::raw::c_void,
pub size: u32,
pub _padding_205: [::std::os::raw::c_char; 4usize],
pub type_: StrhashT,
}
impl Default for CreationGraphNamedOutputT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
#[derive(Default, Copy, Clone)]
pub struct CiCreationGraphInstanceProviderI {
pub get_instances: ::std::option::Option<
unsafe extern "C" fn(
component_data: *mut ::std::os::raw::c_void,
ta: *mut TempAllocatorI,
) -> *mut *mut CreationGraphInstanceT,
>,
}
pub const TM_CREATION_GRAPH_RESOURCE_BUFFERS__PRE_CMD: ::std::os::raw::c_int = 0;
pub const TM_CREATION_GRAPH_RESOURCE_BUFFERS__POST_CMD: ::std::os::raw::c_int = 1;
pub const TM_CREATION_GRAPH_RESOURCE_BUFFERS__MAX: ::std::os::raw::c_int = 2;
pub type _bindgen_ty_4 = ::std::os::raw::c_int;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct CreationGraphTaskT {
pub f: ::std::option::Option<unsafe extern "C" fn(data: *mut ::std::os::raw::c_void, id: u64)>,
pub data: *mut ::std::os::raw::c_void,
pub debug_name: *const ::std::os::raw::c_char,
}
impl Default for CreationGraphTaskT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
pub struct CreationGraphContextT {
pub rb: *mut RendererBackendI,
pub device_affinity_mask: u32,
pub default_instance: bool,
pub _padding_258: [::std::os::raw::c_char; 3usize],
pub ta: *mut TempAllocatorI,
pub requested_tasks: *mut *mut CreationGraphTaskT,
pub res_buf: [*mut RendererResourceCommandBufferO; 2usize],
pub cmd_buf: *mut RendererCommandBufferO,
pub event_context: *mut ::std::os::raw::c_void,
pub entity_id: u64,
pub entity_ctx: *mut EntityContextO,
pub force_build_node: TtIdT,
pub force_build_cache_tag: StrhashT,
pub shader_repository: *mut ShaderRepositoryO,
pub event_id: StrhashT,
pub tt: *mut TheTruthO,
pub shader_context: *mut ShaderSystemContextO,
}
impl Default for CreationGraphContextT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
pub struct CachedNodeResultT {
pub object: TtIdT,
pub validity_hash: u64,
}
impl Default for CachedNodeResultT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct CreationGraphPreviewO {
_unused: [u8; 0],
}
#[repr(C)]
pub struct CreationGraphPreviewI {
pub output_name: StrhashT,
pub create: ::std::option::Option<
unsafe extern "C" fn(
allocator: *mut AllocatorI,
data: *const ::std::os::raw::c_void,
) -> *mut CreationGraphPreviewO,
>,
pub destroy: ::std::option::Option<
unsafe extern "C" fn(inst: *mut CreationGraphPreviewO, allocator: *mut AllocatorI),
>,
pub render: ::std::option::Option<
unsafe extern "C" fn(
inst: *mut CreationGraphPreviewO,
tt: *mut TheTruthO,
asset: TtIdT,
args: *const RenderArgsT,
),
>,
pub ui: ::std::option::Option<
unsafe extern "C" fn(inst: *mut CreationGraphPreviewO, args: *const AssetPreviewApiUiArgsT),
>,
pub create_entity: ::std::option::Option<
unsafe extern "C" fn(
inst: *mut CreationGraphPreviewO,
tt: *mut TheTruthO,
asset: TtIdT,
entity_ctx: *mut EntityContextO,
result: *mut EntityT,
),
>,
pub toolbars: ::std::option::Option<
unsafe extern "C" fn(
inst: *mut CreationGraphPreviewO,
ta: *mut TempAllocatorI,
args: *const AssetPreviewApiUiArgsT,
) -> *mut ToolbarI,
>,
}
impl Default for CreationGraphPreviewI {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct CreationGraphO {
_unused: [u8; 0],
}
#[repr(C)]
#[derive(Default, Copy, Clone)]
pub struct CreationGraphApi {
pub create_truth_types: ::std::option::Option<unsafe extern "C" fn(tt: *mut TheTruthO)>,
pub asset_browser_create_interface:
::std::option::Option<unsafe extern "C" fn() -> *mut AssetBrowserCreateAssetI>,
pub create_instance: ::std::option::Option<
unsafe extern "C" fn(
tt: *mut TheTruthO,
asset: TtIdT,
context: *mut CreationGraphContextT,
) -> CreationGraphInstanceT,
>,
pub destroy_instance: ::std::option::Option<
unsafe extern "C" fn(
instance: *mut CreationGraphInstanceT,
context: *mut CreationGraphContextT,
),
>,
pub invalidate: ::std::option::Option<unsafe extern "C" fn(tt: *mut TheTruthO, asset: TtIdT)>,
pub write_blackboard: ::std::option::Option<
unsafe extern "C" fn(
tt: *mut TheTruthO,
asset: TtIdT,
key_name: StrhashT,
value: *const CreationGraphBlackboardValueT,
),
>,
pub read_blackboard: ::std::option::Option<
unsafe extern "C" fn(
tt: *mut TheTruthO,
asset: TtIdT,
key_name: StrhashT,
value: *mut CreationGraphBlackboardValueT,
) -> bool,
>,
pub remove_blackboard: ::std::option::Option<
unsafe extern "C" fn(tt: *mut TheTruthO, asset: TtIdT, key_name: StrhashT),
>,
pub lock_resource_cache: ::std::option::Option<
unsafe extern "C" fn(
tt: *mut TheTruthO,
graph_id: TtIdT,
node_id: TtIdT,
) -> *mut CreationGraphNodeCacheT,
>,
pub unlock_resource_cache:
::std::option::Option<unsafe extern "C" fn(cache: *mut CreationGraphNodeCacheT)>,
pub add_listener: ::std::option::Option<
unsafe extern "C" fn(tt: *mut TheTruthO, asset: TtIdT, object: TtIdT),
>,
pub tick_queue: ::std::option::Option<
unsafe extern "C" fn(
instance: *mut CreationGraphInstanceT,
dt: f32,
context: *mut CreationGraphContextT,
),
>,
pub has_event: ::std::option::Option<
unsafe extern "C" fn(instance: *mut CreationGraphInstanceT, event_id: StrhashT) -> bool,
>,
pub trigger_event: ::std::option::Option<
unsafe extern "C" fn(
instance: *mut CreationGraphInstanceT,
event_id: StrhashT,
context: *mut CreationGraphContextT,
),
>,
pub update_interface: ::std::option::Option<
unsafe extern "C" fn(
instance: *mut CreationGraphInstanceT,
interface_id: StrhashT,
context: *mut CreationGraphContextT,
),
>,
pub lookup_cached_node_result: ::std::option::Option<
unsafe extern "C" fn(
tt: *mut TheTruthO,
graph_id: TtIdT,
node_id: TtIdT,
) -> CachedNodeResultT,
>,
pub set_cached_node_result: ::std::option::Option<
unsafe extern "C" fn(
tt: *mut TheTruthO,
graph_id: TtIdT,
node_id: TtIdT,
validity_hash: u64,
object: TtIdT,
),
>,
pub output: ::std::option::Option<
unsafe extern "C" fn(
instance: *mut CreationGraphInstanceT,
node_name_hash: StrhashT,
context: *mut CreationGraphContextT,
output_node_type: *mut *const CreationGraphOutputNodeTypeT,
) -> CreationGraphOutputT,
>,
pub all_outputs: ::std::option::Option<
unsafe extern "C" fn(
instance: *mut CreationGraphInstanceT,
context: *mut CreationGraphContextT,
) -> CreationGraphAllOutputsT,
>,
pub refresh_outputs: ::std::option::Option<
unsafe extern "C" fn(
instance: *mut CreationGraphInstanceT,
context: *mut CreationGraphContextT,
),
>,
pub named_output: ::std::option::Option<
unsafe extern "C" fn(
instance: *mut CreationGraphInstanceT,
type_: StrhashT,
name: StrhashT,
) -> CreationGraphNamedOutputT,
>,
pub gather_stripped_graph: ::std::option::Option<
unsafe extern "C" fn(
instance: *mut CreationGraphInstanceT,
context: *mut CreationGraphContextT,
nodes: *mut SetIdT,
),
>,
pub get_instances_from_component: ::std::option::Option<
unsafe extern "C" fn(
tt: *mut TheTruthO,
entity_ctx: *mut EntityContextO,
entity: EntityT,
component_name_hash: StrhashT,
ta: *mut TempAllocatorI,
) -> *mut *mut CreationGraphInstanceT,
>,
pub set_input_value: ::std::option::Option<
unsafe extern "C" fn(
instance: *mut CreationGraphInstanceT,
context: *mut CreationGraphContextT,
name: StrhashT,
data: *mut ::std::os::raw::c_void,
data_size: u32,
),
>,
}
#[repr(C)]
pub struct CreationGraphInterpreterContextT {
pub instance: *mut CreationGraphInstanceT,
pub node: u32,
pub _padding_53: [::std::os::raw::c_char; 4usize],
pub graph_id: TtIdT,
pub node_id: TtIdT,
pub node_type: *const GraphNodeTypeI,
pub wires: *const u32,
}
impl Default for CreationGraphInterpreterContextT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
pub type CreationGraphInterpreterRunNodeF =
::std::option::Option<unsafe extern "C" fn(ctx: *mut CreationGraphInterpreterContextT)>;
pub type CreationGraphInterpreterRunDependenciesF =
::std::option::Option<unsafe extern "C" fn(ctx: *mut CreationGraphInterpreterContextT) -> bool>;
#[repr(C)]
pub struct CreationGraphInterpreterNodeT {
pub run: CreationGraphInterpreterRunNodeF,
pub run_dependencies: CreationGraphInterpreterRunDependenciesF,
pub wires_index: u32,
pub _padding_96: [::std::os::raw::c_char; 4usize],
pub node_type: *const GraphNodeTypeI,
pub graph_id: TtIdT,
pub node_id: TtIdT,
pub dependencies_index: u32,
pub _padding_113: [::std::os::raw::c_char; 4usize],
}
impl Default for CreationGraphInterpreterNodeT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
#[derive(Default, Copy, Clone)]
pub struct CreationGraphInterpreterApi {
pub create_graph_interpreter: ::std::option::Option<
unsafe extern "C" fn(allocator: *mut AllocatorI) -> *mut CreationGraphInterpreterO,
>,
pub destroy_graph_interpreter:
::std::option::Option<unsafe extern "C" fn(gr: *mut CreationGraphInterpreterO)>,
pub set_graph: ::std::option::Option<
unsafe extern "C" fn(
gr: *mut CreationGraphInterpreterO,
nodes: *const CreationGraphInterpreterNodeT,
num_nodes: u32,
num_wires: u32,
node_wires: *mut u32,
num_node_wires: u32,
dependencies: *mut u32,
num_dependencies: u32,
),
>,
pub default_instance: ::std::option::Option<
unsafe extern "C" fn(gr: *mut CreationGraphInterpreterO) -> CreationGraphInstanceT,
>,
pub active_instances: ::std::option::Option<
unsafe extern "C" fn(
gr: *mut CreationGraphInterpreterO,
count: *mut u32,
) -> *mut *mut CreationGraphInstanceDataO,
>,
pub create_instance: ::std::option::Option<
unsafe extern "C" fn(gr: *mut CreationGraphInterpreterO) -> CreationGraphInstanceT,
>,
pub destroy_instance:
::std::option::Option<unsafe extern "C" fn(rc: *mut CreationGraphInstanceT)>,
pub run_node_at_index:
::std::option::Option<unsafe extern "C" fn(rc: *mut CreationGraphInstanceT, node: u32)>,
pub add_event_node: ::std::option::Option<
unsafe extern "C" fn(gr: *mut CreationGraphInterpreterO, e: StrhashT, node: u32),
>,
pub has_event: ::std::option::Option<
unsafe extern "C" fn(gr: *mut CreationGraphInterpreterO, e: StrhashT) -> bool,
>,
pub trigger_event:
::std::option::Option<unsafe extern "C" fn(rc: *mut CreationGraphInstanceT, e: StrhashT)>,
pub trigger_wire:
::std::option::Option<unsafe extern "C" fn(rc: *mut CreationGraphInstanceT, wire: u32)>,
pub gather_stripped_graph: ::std::option::Option<
unsafe extern "C" fn(rc: *mut CreationGraphInstanceT, e: StrhashT, nodes: *mut SetIdT),
>,
pub queue_wire: ::std::option::Option<
unsafe extern "C" fn(rc: *mut CreationGraphInstanceT, wire: u32, delay: f32),
>,
pub tick_queue:
::std::option::Option<unsafe extern "C" fn(rc: *mut CreationGraphInstanceT, dt: f32)>,
pub get_node_run_context: ::std::option::Option<
unsafe extern "C" fn(
inst: *mut CreationGraphInstanceT,
node: u32,
) -> CreationGraphInterpreterContextT,
>,
pub read_wire: ::std::option::Option<
unsafe extern "C" fn(
inst: *mut CreationGraphInstanceT,
wire: u32,
) -> CreationGraphInterpreterWireContentT,
>,
pub read_wires: ::std::option::Option<
unsafe extern "C" fn(
inst: *mut CreationGraphInstanceT,
content: *mut CreationGraphInterpreterWireContentT,
wires: *const u32,
n: u32,
),
>,
pub read_wires_indirect: ::std::option::Option<
unsafe extern "C" fn(
inst: *mut CreationGraphInstanceT,
content: *mut *mut CreationGraphInterpreterWireContentT,
wires: *const u32,
n: u32,
),
>,
pub write_wire: ::std::option::Option<
unsafe extern "C" fn(
inst: *mut CreationGraphInstanceT,
wire: u32,
type_info: StrhashT,
n: u32,
size: u32,
) -> *mut ::std::os::raw::c_void,
>,
pub read_variable: ::std::option::Option<
unsafe extern "C" fn(
inst: *mut CreationGraphInstanceT,
variable: u64,
) -> CreationGraphInterpreterWireContentT,
>,
pub write_variable: ::std::option::Option<
unsafe extern "C" fn(
inst: *mut CreationGraphInstanceT,
variable: u64,
n: u32,
size: u32,
) -> *mut ::std::os::raw::c_void,
>,
pub random_float:
::std::option::Option<unsafe extern "C" fn(rc: *mut CreationGraphInstanceT) -> f32>,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct CreationGraphRuntimeDataT {
_unused: [u8; 0],
}
pub const TM_TT_PROP__GRAPH__NODES: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__GRAPH__CONNECTIONS: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__GRAPH__DATA: ::std::os::raw::c_int = 2;
pub const TM_TT_PROP__GRAPH__COMMENTS: ::std::os::raw::c_int = 3;
pub const TM_TT_PROP__GRAPH__INTERFACE: ::std::os::raw::c_int = 4;
pub type _bindgen_ty_5 = ::std::os::raw::c_int;
pub const TM_TT_PROP__GRAPH_NODE__TYPE: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__GRAPH_NODE__LABEL: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__GRAPH_NODE__POSITION_X: ::std::os::raw::c_int = 2;
pub const TM_TT_PROP__GRAPH_NODE__POSITION_Y: ::std::os::raw::c_int = 3;
pub const TM_TT_PROP__GRAPH_NODE__WIDTH: ::std::os::raw::c_int = 4;
pub const TM_TT_PROP__GRAPH_NODE__SETTINGS: ::std::os::raw::c_int = 5;
pub type _bindgen_ty_6 = ::std::os::raw::c_int;
pub const TM_TT_PROP__GRAPH_CONNECTION__FROM_NODE: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__GRAPH_CONNECTION__TO_NODE: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__GRAPH_CONNECTION__FROM_CONNECTOR_HASH: ::std::os::raw::c_int = 2;
pub const TM_TT_PROP__GRAPH_CONNECTION__TO_CONNECTOR_HASH: ::std::os::raw::c_int = 3;
pub type _bindgen_ty_7 = ::std::os::raw::c_int;
pub const TM_TT_PROP__GRAPH_DATA__TO_NODE: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__GRAPH_DATA__TO_CONNECTOR_HASH: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__GRAPH_DATA__DATA: ::std::os::raw::c_int = 2;
pub type _bindgen_ty_8 = ::std::os::raw::c_int;
pub const TM_TT_PROP__GRAPH_COMMENT__TEXT: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__GRAPH_COMMENT__POSITION_X: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__GRAPH_COMMENT__POSITION_Y: ::std::os::raw::c_int = 2;
pub const TM_TT_PROP__GRAPH_COMMENT__FONT_SCALE: ::std::os::raw::c_int = 3;
pub const TM_TT_PROP__GRAPH_COMMENT__COLOR: ::std::os::raw::c_int = 4;
pub type _bindgen_ty_9 = ::std::os::raw::c_int;
pub const TM_TT_PROP__GRAPH_INTERFACE__INPUTS: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__GRAPH_INTERFACE__OUTPUTS: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__GRAPH_INTERFACE__LAST_ID: ::std::os::raw::c_int = 2;
pub const TM_TT_PROP__GRAPH_INTERFACE__CACHED_NODE_RESULT: ::std::os::raw::c_int = 3;
pub type _bindgen_ty_10 = ::std::os::raw::c_int;
pub const TM_TT_PROP__GRAPH_INPUT__NAME: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__GRAPH_INPUT__DISPLAY_NAME: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__GRAPH_INPUT__ID: ::std::os::raw::c_int = 2;
pub const TM_TT_PROP__GRAPH_INPUT__TYPE_HASH: ::std::os::raw::c_int = 3;
pub const TM_TT_PROP__GRAPH_INPUT__VALUE_SET_BY_USER: ::std::os::raw::c_int = 4;
pub const TM_TT_PROP__GRAPH_INPUT__VALUE: ::std::os::raw::c_int = 5;
pub const TM_TT_PROP__GRAPH_INPUT__TOOLTIP: ::std::os::raw::c_int = 6;
pub const TM_TT_PROP__GRAPH_INPUT__PUBLIC: ::std::os::raw::c_int = 7;
pub const TM_TT_PROP__GRAPH_INPUT__ORDER: ::std::os::raw::c_int = 8;
pub type _bindgen_ty_11 = ::std::os::raw::c_int;
pub const TM_TT_PROP__GRAPH_OUTPUT__NAME: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__GRAPH_OUTPUT__DISPLAY_NAME: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__GRAPH_OUTPUT__ID: ::std::os::raw::c_int = 2;
pub const TM_TT_PROP__GRAPH_OUTPUT__TYPE_HASH: ::std::os::raw::c_int = 3;
pub const TM_TT_PROP__GRAPH_OUTPUT__ORDER: ::std::os::raw::c_int = 4;
pub type _bindgen_ty_12 = ::std::os::raw::c_int;
pub const TM_TT_PROP__GRAPH_CACHED_NODE_RESULT__NODE: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__GRAPH_CACHED_NODE_RESULT__VALIDITY_HASH: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__GRAPH_CACHED_NODE_RESULT__OBJECT: ::std::os::raw::c_int = 2;
pub type _bindgen_ty_13 = ::std::os::raw::c_int;
pub const TM_TT_PROP__GRAPH_SETTINGS__GRAPH_UUID_A: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__GRAPH_SETTINGS__VIEW_POSITION: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__GRAPH_SETTINGS__VIEW_SCALE: ::std::os::raw::c_int = 2;
pub const TM_TT_PROP__GRAPH_SETTINGS__GRID_SNAPPING: ::std::os::raw::c_int = 3;
pub const TM_TT_PROP__GRAPH_SETTINGS__GRID_SIZE: ::std::os::raw::c_int = 4;
pub const TM_TT_PROP__GRAPH_SETTINGS__DEBUG_WATCH_WIRE_OVERLAY_TABLE_MODE: ::std::os::raw::c_int =
5;
pub const TM_TT_PROP__GRAPH_SETTINGS__SHOW_REMOVED_INHERITED: ::std::os::raw::c_int = 6;
pub const TM_TT_PROP__GRAPH_SETTINGS__DEBUG_WATCHED_WIRES: ::std::os::raw::c_int = 7;
pub const TM_TT_PROP__GRAPH_SETTINGS__DEBUG_PERSISTENT_SETTINGS: ::std::os::raw::c_int = 8;
pub type _bindgen_ty_14 = ::std::os::raw::c_int;
pub const TM_TT_PROP__GRAPH_SETTINGS__BREAKPOINTS: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__GRAPH_SETTINGS__OVERLAY_OPENED: ::std::os::raw::c_int = 1;
pub type _bindgen_ty_15 = ::std::os::raw::c_int;
pub const TM_TT_PROP__GRAPH_SETTINGS_BREAKPOINT__NODE_UNIQUE_ID: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__GRAPH_SETTINGS_BREAKPOINT__NODE_UUID_A: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__GRAPH_SETTINGS_BREAKPOINT__NODE_UUID_B: ::std::os::raw::c_int = 2;
pub const TM_TT_PROP__GRAPH_SETTINGS_BREAKPOINT__SUBGRAPH_NODE_UNIQUE_ID: ::std::os::raw::c_int = 3;
pub const TM_TT_PROP__GRAPH_SETTINGS_BREAKPOINT__SUBGRAPH_NODE_UUID_A: ::std::os::raw::c_int = 4;
pub const TM_TT_PROP__GRAPH_SETTINGS_BREAKPOINT__SUBGRAPH_NODE_UUID_B: ::std::os::raw::c_int = 5;
pub const TM_TT_PROP__GRAPH_SETTINGS_BREAKPOINT__DISABLED: ::std::os::raw::c_int = 6;
pub const TM_TT_PROP__GRAPH_SETTINGS_BREAKPOINT__GRAPH_UUID_A: ::std::os::raw::c_int = 7;
pub const TM_TT_PROP__GRAPH_SETTINGS_BREAKPOINT__GRAPH_UUID_B: ::std::os::raw::c_int = 8;
pub type _bindgen_ty_16 = ::std::os::raw::c_int;
pub const TM_GRAPH_MAX_CONNECTORS: ::std::os::raw::c_int = 24;
pub type _bindgen_ty_17 = ::std::os::raw::c_int;
#[repr(C)]
#[derive(Copy, Clone)]
pub union GraphGenericValueTBindgenTy1 {
pub data: *const ::std::os::raw::c_void,
pub str_: *const ::std::os::raw::c_char,
pub f: *const f32,
pub uint64: *const u64,
pub uint32: *const u32,
pub vec2: *const Vec2T,
pub vec3: *const Vec3T,
pub vec4: *const Vec4T,
pub rect: *const RectT,
pub srgb: *const ColorSrgbT,
pub boolean: *const bool,
}
impl Default for GraphGenericValueTBindgenTy1 {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
pub const TM_CREATION_GRAPH__STATIC_WIRE__SINK: ::std::os::raw::c_int = 0;
pub const TM_CREATION_GRAPH__STATIC_WIRE__CONTEXT: ::std::os::raw::c_int = 1;
pub const TM_CREATION_GRAPH__STATIC_WIRE__COUNT: ::std::os::raw::c_int = 2;
pub type _bindgen_ty_18 = ::std::os::raw::c_int;
#[repr(C)]
pub struct CreationGraphCompileContextT {
pub tt: *mut TheTruthO,
pub graph_id: TtIdT,
pub settings_id: TtIdT,
pub instanced_settings_id: TtIdT,
pub asset_label_uuid: u64,
}
impl Default for CreationGraphCompileContextT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
pub const TM_VERTEX_SEMANTIC_POSITION: ::std::os::raw::c_int = 0;
pub const TM_VERTEX_SEMANTIC_NORMAL: ::std::os::raw::c_int = 1;
pub const TM_VERTEX_SEMANTIC_TANGENT0: ::std::os::raw::c_int = 2;
pub const TM_VERTEX_SEMANTIC_TANGENT1: ::std::os::raw::c_int = 3;
pub const TM_VERTEX_SEMANTIC_SKIN_DATA: ::std::os::raw::c_int = 4;
pub const TM_VERTEX_SEMANTIC_TEXCOORD0: ::std::os::raw::c_int = 5;
pub const TM_VERTEX_SEMANTIC_TEXCOORD1: ::std::os::raw::c_int = 6;
pub const TM_VERTEX_SEMANTIC_TEXCOORD2: ::std::os::raw::c_int = 7;
pub const TM_VERTEX_SEMANTIC_TEXCOORD3: ::std::os::raw::c_int = 8;
pub const TM_VERTEX_SEMANTIC_COLOR0: ::std::os::raw::c_int = 9;
pub const TM_VERTEX_SEMANTIC_COLOR1: ::std::os::raw::c_int = 10;
pub const TM_VERTEX_SEMANTIC_MAX_SEMANTICS: ::std::os::raw::c_int = 11;
pub const TM_INDEX_SEMANTIC: ::std::os::raw::c_int = 16;
pub type _bindgen_ty_19 = ::std::os::raw::c_int;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct GpuGeometryT {
pub vfetch_system: *mut ShaderSystemO,
pub vfetch_system_cbuffer: u32,
pub vfetch_system_rbinder: u32,
pub ray_tracing_geometry_flags: u32,
pub _padding_48: [::std::os::raw::c_char; 4usize],
}
impl Default for GpuGeometryT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
pub const TM_TT_PROP__IMAGE_FILTER_SETTINGS__COLOR_SPACE: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__IMAGE_FILTER_SETTINGS__FILTER: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__IMAGE_FILTER_SETTINGS__OVERRIDE_EXISTING_MIPS: ::std::os::raw::c_int = 2;
pub const TM_TT_PROP__IMAGE_FILTER_SETTINGS__STORAGE_POLICY: ::std::os::raw::c_int = 3;
pub type _bindgen_ty_20 = ::std::os::raw::c_int;
pub const TM_TT_PROP__IMAGE_DESCRIPTION__TYPE: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__IMAGE_DESCRIPTION__PIXEL_FORMAT: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__IMAGE_DESCRIPTION__WIDTH: ::std::os::raw::c_int = 2;
pub const TM_TT_PROP__IMAGE_DESCRIPTION__HEIGHT: ::std::os::raw::c_int = 3;
pub const TM_TT_PROP__IMAGE_DESCRIPTION__DEPTH: ::std::os::raw::c_int = 4;
pub const TM_TT_PROP__IMAGE_DESCRIPTION__MIP_LEVELS: ::std::os::raw::c_int = 5;
pub const TM_TT_PROP__IMAGE_DESCRIPTION__LAYER_COUNT: ::std::os::raw::c_int = 6;
pub const TM_TT_PROP__IMAGE_DESCRIPTION__SAMPLE_COUNT: ::std::os::raw::c_int = 7;
pub const TM_TT_PROP__IMAGE_DESCRIPTION__DEBUG_TAG: ::std::os::raw::c_int = 8;
pub type _bindgen_ty_21 = ::std::os::raw::c_int;
pub const TM_TT_PROP__IMAGE_ARCHIVE__FILENAME: ::std::os::raw::c_int = 0;
pub const TM_TT_PROP__IMAGE_ARCHIVE__VALIDITY_HASH: ::std::os::raw::c_int = 1;
pub const TM_TT_PROP__IMAGE_ARCHIVE__DESCRIPTION: ::std::os::raw::c_int = 2;
pub const TM_TT_PROP__IMAGE_ARCHIVE__BUFFER: ::std::os::raw::c_int = 3;
pub const TM_TT_PROP__IMAGE_ARCHIVE__RAW: ::std::os::raw::c_int = 4;
pub type _bindgen_ty_22 = ::std::os::raw::c_int;
#[repr(C)]
pub struct GpuBufferT {
pub validity_hash: u64,
pub size: u32,
pub usage_flags: u32,
pub handle: RendererHandleT,
pub resource_state: u16,
pub _padding_21: [::std::os::raw::c_char; 2usize],
}
impl Default for GpuBufferT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct CreationGraphShaderInstanceT {
pub shader: *mut ShaderO,
pub cbuf: u32,
pub rbinder: u32,
}
impl Default for CreationGraphShaderInstanceT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
pub struct CreationGraphPhysicsShapeT {
pub dcc_asset: TtIdT,
pub dcc_mesh: TtIdT,
}
impl Default for CreationGraphPhysicsShapeT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
pub struct GpuSimulationChannelBufferDataT {
pub buffer: RendererHandleT,
pub buffer_resource_state: u16,
pub _padding_14: [::std::os::raw::c_char; 6usize],
pub buffer_header_size: u32,
pub buffer_header_count_offset: u32,
pub buffer_header_stride_offset: u32,
}
impl Default for GpuSimulationChannelBufferDataT {
fn default() -> Self {
let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
unsafe {
::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
s.assume_init()
}
}
}
#[repr(C)]
#[derive(Default, Copy, Clone)]
pub struct CreationGraphInstanceDataO {
pub _address: u8,
}
#[repr(C)]
#[derive(Default, Copy, Clone)]
pub struct CreationGraphManagerO {
pub _address: u8,
}
use const_cstr::{const_cstr, ConstCStr};
use crate::foundation::*;
use crate::plugins::editor_views::*;
use crate::plugins::entity::*;
use crate::plugins::render_graph::*;
use crate::plugins::renderer::*;
use crate::plugins::shader_system::*;
use crate::plugins::the_machinery_shared::*;
use crate::plugins::ui::*;
impl CreationGraphApi {
pub unsafe fn create_truth_types(&self, tt: *mut TheTruthO) {
self.create_truth_types.unwrap()(tt)
}
pub unsafe fn asset_browser_create_interface(&self) -> *mut AssetBrowserCreateAssetI {
self.asset_browser_create_interface.unwrap()()
}
pub unsafe fn create_instance(
&self,
tt: *mut TheTruthO,
asset: TtIdT,
context: *mut CreationGraphContextT,
) -> CreationGraphInstanceT {
self.create_instance.unwrap()(tt, asset, context)
}
pub unsafe fn destroy_instance(
&self,
instance: *mut CreationGraphInstanceT,
context: *mut CreationGraphContextT,
) {
self.destroy_instance.unwrap()(instance, context)
}
pub unsafe fn invalidate(&self, tt: *mut TheTruthO, asset: TtIdT) {
self.invalidate.unwrap()(tt, asset)
}
pub unsafe fn write_blackboard(
&self,
tt: *mut TheTruthO,
asset: TtIdT,
key_name: StrhashT,
value: *const CreationGraphBlackboardValueT,
) {
self.write_blackboard.unwrap()(tt, asset, key_name, value)
}
pub unsafe fn read_blackboard(
&self,
tt: *mut TheTruthO,
asset: TtIdT,
key_name: StrhashT,
value: *mut CreationGraphBlackboardValueT,
) -> bool {
self.read_blackboard.unwrap()(tt, asset, key_name, value)
}
pub unsafe fn remove_blackboard(&self, tt: *mut TheTruthO, asset: TtIdT, key_name: StrhashT) {
self.remove_blackboard.unwrap()(tt, asset, key_name)
}
pub unsafe fn lock_resource_cache(
&self,
tt: *mut TheTruthO,
graph_id: TtIdT,
node_id: TtIdT,
) -> *mut CreationGraphNodeCacheT {
self.lock_resource_cache.unwrap()(tt, graph_id, node_id)
}
pub unsafe fn unlock_resource_cache(&self, cache: *mut CreationGraphNodeCacheT) {
self.unlock_resource_cache.unwrap()(cache)
}
pub unsafe fn add_listener(&self, tt: *mut TheTruthO, asset: TtIdT, object: TtIdT) {
self.add_listener.unwrap()(tt, asset, object)
}
pub unsafe fn tick_queue(
&self,
instance: *mut CreationGraphInstanceT,
dt: f32,
context: *mut CreationGraphContextT,
) {
self.tick_queue.unwrap()(instance, dt, context)
}
pub unsafe fn has_event(
&self,
instance: *mut CreationGraphInstanceT,
event_id: StrhashT,
) -> bool {
self.has_event.unwrap()(instance, event_id)
}
pub unsafe fn trigger_event(
&self,
instance: *mut CreationGraphInstanceT,
event_id: StrhashT,
context: *mut CreationGraphContextT,
) {
self.trigger_event.unwrap()(instance, event_id, context)
}
pub unsafe fn update_interface(
&self,
instance: *mut CreationGraphInstanceT,
interface_id: StrhashT,
context: *mut CreationGraphContextT,
) {
self.update_interface.unwrap()(instance, interface_id, context)
}
pub unsafe fn lookup_cached_node_result(
&self,
tt: *mut TheTruthO,
graph_id: TtIdT,
node_id: TtIdT,
) -> CachedNodeResultT {
self.lookup_cached_node_result.unwrap()(tt, graph_id, node_id)
}
pub unsafe fn set_cached_node_result(
&self,
tt: *mut TheTruthO,
graph_id: TtIdT,
node_id: TtIdT,
validity_hash: u64,
object: TtIdT,
) {
self.set_cached_node_result.unwrap()(tt, graph_id, node_id, validity_hash, object)
}
pub unsafe fn output(
&self,
instance: *mut CreationGraphInstanceT,
node_name_hash: StrhashT,
context: *mut CreationGraphContextT,
output_node_type: *mut *const CreationGraphOutputNodeTypeT,
) -> CreationGraphOutputT {
self.output.unwrap()(instance, node_name_hash, context, output_node_type)
}
pub unsafe fn all_outputs(
&self,
instance: *mut CreationGraphInstanceT,
context: *mut CreationGraphContextT,
) -> CreationGraphAllOutputsT {
self.all_outputs.unwrap()(instance, context)
}
pub unsafe fn refresh_outputs(
&self,
instance: *mut CreationGraphInstanceT,
context: *mut CreationGraphContextT,
) {
self.refresh_outputs.unwrap()(instance, context)
}
pub unsafe fn named_output(
&self,
instance: *mut CreationGraphInstanceT,
type_: StrhashT,
name: StrhashT,
) -> CreationGraphNamedOutputT {
self.named_output.unwrap()(instance, type_, name)
}
pub unsafe fn gather_stripped_graph(
&self,
instance: *mut CreationGraphInstanceT,
context: *mut CreationGraphContextT,
nodes: *mut SetIdT,
) {
self.gather_stripped_graph.unwrap()(instance, context, nodes)
}
pub unsafe fn get_instances_from_component(
&self,
tt: *mut TheTruthO,
entity_ctx: *mut EntityContextO,
entity: EntityT,
component_name_hash: StrhashT,
ta: *mut TempAllocatorI,
) -> *mut *mut CreationGraphInstanceT {
self.get_instances_from_component.unwrap()(tt, entity_ctx, entity, component_name_hash, ta)
}
pub unsafe fn set_input_value(
&self,
instance: *mut CreationGraphInstanceT,
context: *mut CreationGraphContextT,
name: StrhashT,
data: *mut ::std::os::raw::c_void,
data_size: u32,
) {
self.set_input_value.unwrap()(instance, context, name, data, data_size)
}
}
impl crate::Api for CreationGraphApi {
const NAME: ConstCStr = const_cstr!("tm_creation_graph_api");
}
impl CreationGraphInterpreterApi {
pub unsafe fn create_graph_interpreter(
&self,
allocator: *mut AllocatorI,
) -> *mut CreationGraphInterpreterO {
self.create_graph_interpreter.unwrap()(allocator)
}
pub unsafe fn destroy_graph_interpreter(&self, gr: *mut CreationGraphInterpreterO) {
self.destroy_graph_interpreter.unwrap()(gr)
}
pub unsafe fn set_graph(
&self,
gr: *mut CreationGraphInterpreterO,
nodes: *const CreationGraphInterpreterNodeT,
num_nodes: u32,
num_wires: u32,
node_wires: *mut u32,
num_node_wires: u32,
dependencies: *mut u32,
num_dependencies: u32,
) {
self.set_graph.unwrap()(
gr,
nodes,
num_nodes,
num_wires,
node_wires,
num_node_wires,
dependencies,
num_dependencies,
)
}
pub unsafe fn default_instance(
&self,
gr: *mut CreationGraphInterpreterO,
) -> CreationGraphInstanceT {
self.default_instance.unwrap()(gr)
}
pub unsafe fn active_instances(
&self,
gr: *mut CreationGraphInterpreterO,
count: *mut u32,
) -> *mut *mut CreationGraphInstanceDataO {
self.active_instances.unwrap()(gr, count)
}
pub unsafe fn create_instance(
&self,
gr: *mut CreationGraphInterpreterO,
) -> CreationGraphInstanceT {
self.create_instance.unwrap()(gr)
}
pub unsafe fn destroy_instance(&self, rc: *mut CreationGraphInstanceT) {
self.destroy_instance.unwrap()(rc)
}
pub unsafe fn run_node_at_index(&self, rc: *mut CreationGraphInstanceT, node: u32) {
self.run_node_at_index.unwrap()(rc, node)
}
pub unsafe fn add_event_node(
&self,
gr: *mut CreationGraphInterpreterO,
e: StrhashT,
node: u32,
) {
self.add_event_node.unwrap()(gr, e, node)
}
pub unsafe fn has_event(&self, gr: *mut CreationGraphInterpreterO, e: StrhashT) -> bool {
self.has_event.unwrap()(gr, e)
}
pub unsafe fn trigger_event(&self, rc: *mut CreationGraphInstanceT, e: StrhashT) {
self.trigger_event.unwrap()(rc, e)
}
pub unsafe fn trigger_wire(&self, rc: *mut CreationGraphInstanceT, wire: u32) {
self.trigger_wire.unwrap()(rc, wire)
}
pub unsafe fn gather_stripped_graph(
&self,
rc: *mut CreationGraphInstanceT,
e: StrhashT,
nodes: *mut SetIdT,
) {
self.gather_stripped_graph.unwrap()(rc, e, nodes)
}
pub unsafe fn queue_wire(&self, rc: *mut CreationGraphInstanceT, wire: u32, delay: f32) {
self.queue_wire.unwrap()(rc, wire, delay)
}
pub unsafe fn tick_queue(&self, rc: *mut CreationGraphInstanceT, dt: f32) {
self.tick_queue.unwrap()(rc, dt)
}
pub unsafe fn get_node_run_context(
&self,
inst: *mut CreationGraphInstanceT,
node: u32,
) -> CreationGraphInterpreterContextT {
self.get_node_run_context.unwrap()(inst, node)
}
pub unsafe fn read_wire(
&self,
inst: *mut CreationGraphInstanceT,
wire: u32,
) -> CreationGraphInterpreterWireContentT {
self.read_wire.unwrap()(inst, wire)
}
pub unsafe fn read_wires(
&self,
inst: *mut CreationGraphInstanceT,
content: *mut CreationGraphInterpreterWireContentT,
wires: *const u32,
n: u32,
) {
self.read_wires.unwrap()(inst, content, wires, n)
}
pub unsafe fn read_wires_indirect(
&self,
inst: *mut CreationGraphInstanceT,
content: *mut *mut CreationGraphInterpreterWireContentT,
wires: *const u32,
n: u32,
) {
self.read_wires_indirect.unwrap()(inst, content, wires, n)
}
pub unsafe fn write_wire(
&self,
inst: *mut CreationGraphInstanceT,
wire: u32,
type_info: StrhashT,
n: u32,
size: u32,
) -> *mut ::std::os::raw::c_void {
self.write_wire.unwrap()(inst, wire, type_info, n, size)
}
pub unsafe fn read_variable(
&self,
inst: *mut CreationGraphInstanceT,
variable: u64,
) -> CreationGraphInterpreterWireContentT {
self.read_variable.unwrap()(inst, variable)
}
pub unsafe fn write_variable(
&self,
inst: *mut CreationGraphInstanceT,
variable: u64,
n: u32,
size: u32,
) -> *mut ::std::os::raw::c_void {
self.write_variable.unwrap()(inst, variable, n, size)
}
pub unsafe fn random_float(&self, rc: *mut CreationGraphInstanceT) -> f32 {
self.random_float.unwrap()(rc)
}
}
impl crate::Api for CreationGraphInterpreterApi {
const NAME: ConstCStr = const_cstr!("tm_creation_graph_interpreter_api");
}
pub const TM_TT_TYPE_HASH__CREATION_GRAPH: StrhashT = StrhashT {
u64_: 14263233325791661430u64,
};
pub const TM_CREATION_GRAPH_EVENT_COMPILE: StrhashT = StrhashT {
u64_: 4357650677474677863u64,
};
pub const TM_CREATION_GRAPH_EVENT_INIT: StrhashT = StrhashT {
u64_: 4906703793241200758u64,
};
pub const TM_CREATION_GRAPH_EVENT_TICK: StrhashT = StrhashT {
u64_: 15852286598673457824u64,
};
pub const TM_CREATION_GRAPH_EVENT_NODE_OUTPUT: StrhashT = StrhashT {
u64_: 8475023083591677920u64,
};
pub const TM_CI_CREATION_GRAPH_INSTANCE_PROVIDER: StrhashT = StrhashT {
u64_: 17478698051045250385u64,
};
pub const TM_TYPE_HASH__CREATION_GRAPH__INSTANCE: StrhashT = StrhashT {
u64_: 13519466112014054944u64,
};
pub const TM_TT_TYPE_HASH__STRING_HASH: StrhashT = StrhashT {
u64_: 17092832035897777594u64,
};
pub const TM_TYPE_HASH__GPU_GEOMETRY: StrhashT = StrhashT {
u64_: 111032956890368325u64,
};
pub const TM_TT_TYPE_HASH__IMAGE_MIPMAP_SETTINGS: StrhashT = StrhashT {
u64_: 11382068134251936923u64,
};
pub const TM_TT_TYPE_HASH__IMAGE_DESCRIPTION: StrhashT = StrhashT {
u64_: 8033654588499689407u64,
};
pub const TM_TT_TYPE_HASH__IMAGE_ARCHIVE: StrhashT = StrhashT {
u64_: 13900148506330692421u64,
};
pub const TM_CREATION_GRAPH__IMAGE__OUTPUT_NODE_HASH: StrhashT = StrhashT {
u64_: 14434400046901944053u64,
};
pub const TM_TYPE_HASH__GPU_BUFFER: StrhashT = StrhashT {
u64_: 8638320117310676114u64,
};
pub const TM_CREATION_GRAPH__SHADER_INSTANCE_OUTPUT_HASH: StrhashT = StrhashT {
u64_: 17335244708126637406u64,
};
pub const TM_TYPE_HASH__SHADER_INSTANCE: StrhashT = StrhashT {
u64_: 7875495152435762712u64,
};
pub const TM_TYPE_HASH__CREATION_GRAPH_SHADER_INSTANCE: StrhashT = StrhashT {
u64_: 6679199256464242056u64,
};
pub const TM_CREATION_GRAPH__BOUNDING_VOLUME_HASH: StrhashT = StrhashT {
u64_: 7116090811976251669u64,
};
pub const TM_CREATION_GRAPH__DRAW_CALL_HASH: StrhashT = StrhashT {
u64_: 3141252993814894569u64,
};
pub const TM_CREATION_GRAPH__PHYSICS_SHAPE__OUTPUT_NODE_HASH: StrhashT = StrhashT {
u64_: 11679706363691094784u64,
};
pub const TM_CREATION_GRAPH__RAY_TRACE_INSTANCE_HASH: StrhashT = StrhashT {
u64_: 18169300602035247580u64,
};
pub const TM_TYPE_HASH__GPU_SIMULATION__CHANNEL_BUFFER_DATA: StrhashT = StrhashT {
u64_: 17496717424579581404u64,
};