machinery-api 0.3.0

Generated API types for The Machinery game engine
Documentation
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
#[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);
        }
    }
}
#[repr(C)]
pub struct __BindgenUnionField<T>(::std::marker::PhantomData<T>);
impl<T> __BindgenUnionField<T> {
    #[inline]
    pub const fn new() -> Self {
        __BindgenUnionField(::std::marker::PhantomData)
    }
    #[inline]
    pub unsafe fn as_ref(&self) -> &T {
        ::std::mem::transmute(self)
    }
    #[inline]
    pub unsafe fn as_mut(&mut self) -> &mut T {
        ::std::mem::transmute(self)
    }
}
impl<T> ::std::default::Default for __BindgenUnionField<T> {
    #[inline]
    fn default() -> Self {
        Self::new()
    }
}
impl<T> ::std::clone::Clone for __BindgenUnionField<T> {
    #[inline]
    fn clone(&self) -> Self {
        Self::new()
    }
}
impl<T> ::std::marker::Copy for __BindgenUnionField<T> {}
impl<T> ::std::fmt::Debug for __BindgenUnionField<T> {
    fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        fmt.write_str("__BindgenUnionField")
    }
}
impl<T> ::std::hash::Hash for __BindgenUnionField<T> {
    fn hash<H: ::std::hash::Hasher>(&self, _state: &mut H) {}
}
impl<T> ::std::cmp::PartialEq for __BindgenUnionField<T> {
    fn eq(&self, _other: &__BindgenUnionField<T>) -> bool {
        true
    }
}
impl<T> ::std::cmp::Eq for __BindgenUnionField<T> {}
pub const __SAL_H_VERSION: u32 = 180000000;
pub const __bool_true_false_are_defined: u32 = 1;
pub const TM_RENDER_GRAPH_API_NAME: &'static [u8; 20usize] = b"tm_render_graph_api\0";
pub const TM_RENDER_GRAPH_MODULE_API_NAME: &'static [u8; 27usize] = b"tm_render_graph_module_api\0";
pub const TM_RENDER_GRAPH_SETUP_API_NAME: &'static [u8; 26usize] = b"tm_render_graph_setup_api\0";
pub const TM_RENDER_GRAPH_EXECUTE_API_NAME: &'static [u8; 28usize] =
    b"tm_render_graph_execute_api\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)]
#[derive(Copy, Clone)]
pub struct RenderGraphO {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RenderGraphSetupO {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RenderGraphModuleO {
    _unused: [u8; 0],
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RenderGraphExecuteO {
    _unused: [u8; 0],
}
pub const TM_RENDER_GRAPH_SORT_SUB_MODULE_BITS_START: RenderGraphSortKey = 0;
pub const TM_RENDER_GRAPH_SORT_SUB_MODULE_BITS: RenderGraphSortKey = 8;
pub const TM_RENDER_GRAPH_SORT_DEPTH_BITS_START: RenderGraphSortKey = 8;
pub const TM_RENDER_GRAPH_SORT_DEPTH_BITS: RenderGraphSortKey = 16;
pub const TM_RENDER_GRAPH_SORT_INTERNAL_PASS_BITS_START: RenderGraphSortKey = 24;
pub const TM_RENDER_GRAPH_SORT_INTERNAL_PASS_BITS: RenderGraphSortKey = 27;
pub const TM_RENDER_GRAPH_SORT_PASS_BITS_START: RenderGraphSortKey = 51;
pub const TM_RENDER_GRAPH_SORT_PASS_BITS: RenderGraphSortKey = 11;
pub const TM_RENDER_GRAPH_SORT_GRAPH_LOOP_BITS_START: RenderGraphSortKey = 62;
pub const TM_RENDER_GRAPH_SORT_GRAPH_LOOP_BITS: RenderGraphSortKey = 2;
pub type RenderGraphSortKey = ::std::os::raw::c_int;
pub const TM_RENDER_GRAPH_SORT_ORDER_FRONT_BACK: RenderGraphSortOrder = 0;
pub const TM_RENDER_GRAPH_SORT_ORDER_BACK_FRONT: RenderGraphSortOrder = 1;
pub type RenderGraphSortOrder = ::std::os::raw::c_int;
pub const TM_RENDER_GRAPH_WRITE_BIND_FLAG_UAV: RenderGraphWriteBindFlag = 1;
pub const TM_RENDER_GRAPH_WRITE_BIND_FLAG_COLOR_TARGET: RenderGraphWriteBindFlag = 2;
pub const TM_RENDER_GRAPH_WRITE_BIND_FLAG_DEPTH_STENCIL_TARGET: RenderGraphWriteBindFlag = 4;
pub type RenderGraphWriteBindFlag = ::std::os::raw::c_int;
#[repr(C)]
#[derive(Default, Copy, Clone)]
pub struct RenderGraphHandleT {
    pub value: u32,
}
#[repr(C)]
pub struct RenderGraphBlackboardValue {
    pub __bindgen_anon_1: __BindgenUnionField<RenderGraphBlackboardValueBindgenTy1>,
    pub data: __BindgenUnionField<*mut ::std::os::raw::c_void>,
    pub float32: __BindgenUnionField<f32>,
    pub uint64: __BindgenUnionField<u64>,
    pub uint32: __BindgenUnionField<u32>,
    pub int64: __BindgenUnionField<i64>,
    pub int32: __BindgenUnionField<i32>,
    pub boolean: __BindgenUnionField<bool>,
    pub bindgen_union_field: [u64; 2usize],
}
#[repr(C)]
pub struct RenderGraphBlackboardValueBindgenTy1 {
    pub handle: RendererHandleT,
    pub _padding_91: [::std::os::raw::c_char; 4usize],
}
impl Default for RenderGraphBlackboardValueBindgenTy1 {
    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()
        }
    }
}
impl Default for RenderGraphBlackboardValue {
    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 RenderGraphViewerT {
    pub sort_key: u64,
    pub visibility_mask: u64,
    pub viewer_system: *mut ShaderSystemO,
    pub viewer_cbuffer: *mut ShaderConstantBufferInstanceT,
    pub viewer_rbinder: *mut ShaderResourceBinderInstanceT,
    pub camera: *const CameraT,
}
impl Default for RenderGraphViewerT {
    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 RenderGraphApi {
    pub create: ::std::option::Option<
        unsafe extern "C" fn(
            sort_key: u64,
            static_sort_key: bool,
            allocator: *mut AllocatorI,
            shader_repository: *mut ShaderRepositoryO,
        ) -> *mut RenderGraphO,
    >,
    pub destroy: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *mut RenderGraphO,
            res_buf: *mut RendererResourceCommandBufferO,
        ),
    >,
    pub sort_key: ::std::option::Option<
        unsafe extern "C" fn(graph: *const RenderGraphO, material_layer_name: StrhashT) -> u64,
    >,
    pub register_gpu_image: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *mut RenderGraphO,
            name: StrhashT,
            resource: RendererHandleT,
            resource_state: u32,
            image_desc: *const RendererImageDescT,
        ),
    >,
    pub register_gpu_buffer: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *mut RenderGraphO,
            name: StrhashT,
            resource: RendererHandleT,
            resource_state: u32,
            buffer_desc: *const RendererBufferDescT,
        ),
    >,
    pub write_blackboard: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *mut RenderGraphO,
            key: StrhashT,
            value: RenderGraphBlackboardValue,
        ),
    >,
    pub read_blackboard: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *const RenderGraphO,
            key: StrhashT,
            value: *mut RenderGraphBlackboardValue,
        ) -> bool,
    >,
    pub setup_passes: ::std::option::Option<
        unsafe extern "C" fn(graph: *mut RenderGraphO, render_module: *mut RenderGraphModuleO),
    >,
    pub validate_and_build: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *mut RenderGraphO,
            backend: *mut RendererBackendI,
            device_affinity_mask: u32,
        ) -> bool,
    >,
    pub visualize: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *const RenderGraphO,
            ta: *mut TempAllocatorI,
        ) -> *mut ::std::os::raw::c_char,
    >,
    pub execute: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *mut RenderGraphO,
            backend: *mut RendererBackendI,
            shader_context: *const ShaderSystemContextO,
            device_affinity_mask: u32,
        ) -> *mut AtomicCounterO,
    >,
    pub resource_buffers: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *const RenderGraphO,
            resource_buffers: *mut *mut RendererResourceCommandBufferO,
            num_resource_buffers: *mut u32,
        ),
    >,
    pub command_buffers: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *const RenderGraphO,
            command_buffers: *mut *mut RendererCommandBufferO,
            num_command_buffers: *mut u32,
        ),
    >,
    pub viewers: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *mut RenderGraphO,
            viewers: *mut RenderGraphViewerT,
            num_viewers: *mut u32,
        ),
    >,
    pub backend_handle: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *const RenderGraphO,
            graph_handle: RenderGraphHandleT,
        ) -> RendererHandleT,
    >,
    pub data_requested: ::std::option::Option<
        unsafe extern "C" fn(graph: *const RenderGraphO, name: StrhashT) -> bool,
    >,
    pub external_resource: ::std::option::Option<
        unsafe extern "C" fn(graph: *mut RenderGraphO, name: StrhashT) -> RenderGraphHandleT,
    >,
    pub image_desc: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *mut RenderGraphO,
            handle: RenderGraphHandleT,
        ) -> *const RendererImageDescT,
    >,
    pub buffer_desc: ::std::option::Option<
        unsafe extern "C" fn(
            graph: *mut RenderGraphO,
            handle: RenderGraphHandleT,
        ) -> *const RendererBufferDescT,
    >,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RenderGraphModuleEditorSubmenuI {
    pub submenu_name: *const ::std::os::raw::c_char,
    pub inst: *mut ::std::os::raw::c_void,
    pub active:
        ::std::option::Option<unsafe extern "C" fn(inst: *mut ::std::os::raw::c_void) -> bool>,
    pub submenu: ::std::option::Option<
        unsafe extern "C" fn(
            inst: *mut ::std::os::raw::c_void,
            ui: *mut UiO,
            uistyle: *const UiStyleT,
            submenu_pos: Vec2T,
        ),
    >,
    pub draw_as_toolbar: ::std::option::Option<unsafe extern "C" fn() -> bool>,
}
impl Default for RenderGraphModuleEditorSubmenuI {
    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 RenderGraphModuleApi {
    pub create: ::std::option::Option<
        unsafe extern "C" fn(
            allocator: *mut AllocatorI,
            name: *const ::std::os::raw::c_char,
        ) -> *mut RenderGraphModuleO,
    >,
    pub destroy: ::std::option::Option<
        unsafe extern "C" fn(
            render_module: *mut RenderGraphModuleO,
            res_buf: *mut RendererResourceCommandBufferO,
        ),
    >,
    pub name: ::std::option::Option<
        unsafe extern "C" fn(render_module: *const RenderGraphModuleO) -> StrhashT,
    >,
    pub human_readable_name: ::std::option::Option<
        unsafe extern "C" fn(
            render_module: *const RenderGraphModuleO,
        ) -> *const ::std::os::raw::c_char,
    >,
    pub add_pass: ::std::option::Option<
        unsafe extern "C" fn(render_module: *mut RenderGraphModuleO, pass: *const RenderGraphPassI),
    >,
    pub add_extension_point: ::std::option::Option<
        unsafe extern "C" fn(
            render_module: *mut RenderGraphModuleO,
            extension_point_name: StrhashT,
        ),
    >,
    pub insert_extension: ::std::option::Option<
        unsafe extern "C" fn(
            render_module: *mut RenderGraphModuleO,
            extension_point_name: StrhashT,
            extension: *mut RenderGraphModuleO,
            ordering_weight: f32,
        ) -> bool,
    >,
    pub remove_extension: ::std::option::Option<
        unsafe extern "C" fn(
            render_module: *mut RenderGraphModuleO,
            res_buf: *mut RendererResourceCommandBufferO,
            extension_point_name: StrhashT,
            extension: *mut RenderGraphModuleO,
        ) -> bool,
    >,
    pub add_sub_module: ::std::option::Option<
        unsafe extern "C" fn(
            render_module: *mut RenderGraphModuleO,
            shader_layer_name: StrhashT,
            sub_module: *mut RenderGraphModuleO,
        ),
    >,
    pub init_passes: ::std::option::Option<
        unsafe extern "C" fn(
            render_module: *mut RenderGraphModuleO,
            res_buf: *mut RendererResourceCommandBufferO,
        ),
    >,
    pub set_editor_submenu_interface: ::std::option::Option<
        unsafe extern "C" fn(
            render_module: *mut RenderGraphModuleO,
            submenu_i: *const RenderGraphModuleEditorSubmenuI,
        ),
    >,
    pub editor_submenu: ::std::option::Option<
        unsafe extern "C" fn(
            render_module: *mut RenderGraphModuleO,
            ui: *mut UiO,
            uistyle: *const UiStyleT,
            submenu_pos: Vec2T,
        ),
    >,
    pub set_editor_toolbar: ::std::option::Option<
        unsafe extern "C" fn(render_module: *mut RenderGraphModuleO, toolbar: *mut ToolbarI),
    >,
    pub editor_toolbars: ::std::option::Option<
        unsafe extern "C" fn(
            render_module: *mut RenderGraphModuleO,
            ta: *mut TempAllocatorI,
        ) -> *mut ToolbarI,
    >,
    pub create_persistent_gpu_image: ::std::option::Option<
        unsafe extern "C" fn(
            render_module: *mut RenderGraphModuleO,
            name: StrhashT,
            image_desc: *const RendererImageDescT,
            inherits: StrhashT,
            scale: *const f32,
        ),
    >,
    pub create_persistent_gpu_buffer: ::std::option::Option<
        unsafe extern "C" fn(
            render_module: *mut RenderGraphModuleO,
            name: StrhashT,
            buffer_desc: *const RendererBufferDescT,
            inherits: StrhashT,
        ),
    >,
}
#[repr(C)]
#[derive(Default, Copy, Clone)]
pub struct RenderGraphSetupApi {
    pub external_resource: ::std::option::Option<
        unsafe extern "C" fn(
            graph_setup: *mut RenderGraphSetupO,
            name: StrhashT,
        ) -> RenderGraphHandleT,
    >,
    pub image_desc: ::std::option::Option<
        unsafe extern "C" fn(
            graph_setup: *mut RenderGraphSetupO,
            handle: RenderGraphHandleT,
        ) -> *const RendererImageDescT,
    >,
    pub buffer_desc: ::std::option::Option<
        unsafe extern "C" fn(
            graph_setup: *mut RenderGraphSetupO,
            handle: RenderGraphHandleT,
        ) -> *const RendererBufferDescT,
    >,
    pub shader_repository: ::std::option::Option<
        unsafe extern "C" fn(graph_setup: *mut RenderGraphSetupO) -> *mut ShaderRepositoryO,
    >,
    pub create_gpu_images: ::std::option::Option<
        unsafe extern "C" fn(
            graph_setup: *mut RenderGraphSetupO,
            image_descs: *const RendererImageDescT,
            num_images: u32,
            handles: *mut RenderGraphHandleT,
        ),
    >,
    pub create_gpu_buffers: ::std::option::Option<
        unsafe extern "C" fn(
            graph_setup: *mut RenderGraphSetupO,
            buffer_descs: *const RendererBufferDescT,
            num_buffers: u32,
            handles: *mut RenderGraphHandleT,
        ),
    >,
    pub read_gpu_resource: ::std::option::Option<
        unsafe extern "C" fn(
            graph_setup: *mut RenderGraphSetupO,
            handle: RenderGraphHandleT,
            wanted_resource_state: u32,
            subresource_view: *const RendererImageViewT,
        ),
    >,
    pub write_gpu_resource: ::std::option::Option<
        unsafe extern "C" fn(
            graph_setup: *mut RenderGraphSetupO,
            handle: RenderGraphHandleT,
            write_bind_flags: RenderGraphWriteBindFlag,
            wanted_resource_state: u32,
            load_op: u32,
            bind_slot: u32,
            blackboard_key: StrhashT,
            subresource_view: *const RendererImageViewT,
        ),
    >,
    pub set_active: ::std::option::Option<
        unsafe extern "C" fn(graph_setup: *mut RenderGraphSetupO, state: bool),
    >,
    pub set_early_out: ::std::option::Option<
        unsafe extern "C" fn(graph_setup: *mut RenderGraphSetupO, state: bool),
    >,
    pub set_output: ::std::option::Option<
        unsafe extern "C" fn(graph_setup: *mut RenderGraphSetupO, state: bool),
    >,
    pub set_request_async_compute: ::std::option::Option<
        unsafe extern "C" fn(graph_setup: *mut RenderGraphSetupO, state: bool),
    >,
    pub set_request_multi_gpu: ::std::option::Option<
        unsafe extern "C" fn(graph_setup: *mut RenderGraphSetupO, device_affinity_mask: u32),
    >,
    pub expose_as_material_layer: ::std::option::Option<
        unsafe extern "C" fn(graph_setup: *mut RenderGraphSetupO, layer_name: StrhashT),
    >,
    pub write_blackboard: ::std::option::Option<
        unsafe extern "C" fn(
            graph_setup: *mut RenderGraphSetupO,
            key: StrhashT,
            value: RenderGraphBlackboardValue,
        ),
    >,
    pub read_blackboard: ::std::option::Option<
        unsafe extern "C" fn(
            graph_setup: *mut RenderGraphSetupO,
            key: StrhashT,
            value: *mut RenderGraphBlackboardValue,
        ) -> bool,
    >,
    pub request_data: ::std::option::Option<
        unsafe extern "C" fn(graph_setup: *mut RenderGraphSetupO, name: StrhashT),
    >,
}
#[repr(C)]
pub struct RenderGraphLayerSortKeyT {
    pub layer_name: StrhashT,
    pub sort_key: u64,
}
impl Default for RenderGraphLayerSortKeyT {
    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 RenderGraphExecuteApi {
    pub default_command_buffer: ::std::option::Option<
        unsafe extern "C" fn(
            graph_execute: *mut RenderGraphExecuteO,
        ) -> *mut RendererCommandBufferO,
    >,
    pub default_resource_command_buffer: ::std::option::Option<
        unsafe extern "C" fn(
            graph_execute: *mut RenderGraphExecuteO,
        ) -> *mut RendererResourceCommandBufferO,
    >,
    pub shader_context: ::std::option::Option<
        unsafe extern "C" fn(
            graph_execute: *mut RenderGraphExecuteO,
        ) -> *const ShaderSystemContextO,
    >,
    pub device_affinity_mask:
        ::std::option::Option<unsafe extern "C" fn(graph_execute: *mut RenderGraphExecuteO) -> u32>,
    pub backend_handle: ::std::option::Option<
        unsafe extern "C" fn(
            graph_execute: *mut RenderGraphExecuteO,
            graph_handle: RenderGraphHandleT,
            subresource_view: *const RendererImageViewT,
        ) -> RendererHandleT,
    >,
    pub run_sub_module: ::std::option::Option<
        unsafe extern "C" fn(
            graph_execute: *mut RenderGraphExecuteO,
            sub_module_name: StrhashT,
            sort_key: u64,
            commands: *mut RendererCommandBufferO,
        ),
    >,
    pub read_blackboard: ::std::option::Option<
        unsafe extern "C" fn(
            graph_execute: *mut RenderGraphExecuteO,
            key: StrhashT,
            value: *mut RenderGraphBlackboardValue,
        ) -> bool,
    >,
    pub append_viewers: ::std::option::Option<
        unsafe extern "C" fn(
            graph_execute: *mut RenderGraphExecuteO,
            viewers: *const RenderGraphViewerT,
            num_viewers: u32,
        ) -> u32,
    >,
}
#[repr(C)]
#[derive(Default, Copy, Clone)]
pub struct RenderGraphPassApi {
    pub init_pass: ::std::option::Option<
        unsafe extern "C" fn(
            const_data: *mut ::std::os::raw::c_void,
            allocator: *mut AllocatorI,
            res_buf: *mut RendererResourceCommandBufferO,
        ),
    >,
    pub shutdown_pass: ::std::option::Option<
        unsafe extern "C" fn(
            const_data: *mut ::std::os::raw::c_void,
            allocator: *mut AllocatorI,
            res_buf: *mut RendererResourceCommandBufferO,
        ),
    >,
    pub setup_pass: ::std::option::Option<
        unsafe extern "C" fn(
            const_data: *const ::std::os::raw::c_void,
            runtime_data: *mut ::std::os::raw::c_void,
            graph_setup: *mut RenderGraphSetupO,
        ),
    >,
    pub execute_pass: ::std::option::Option<
        unsafe extern "C" fn(
            const_data: *const ::std::os::raw::c_void,
            runtime_data: *mut ::std::os::raw::c_void,
            sort_key: u64,
            graph_execute: *mut RenderGraphExecuteO,
        ),
    >,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub struct RenderGraphPassI {
    pub const_data: *mut ::std::os::raw::c_void,
    pub const_data_size: u64,
    pub runtime_data_size: u64,
    pub profiling_scope: *const ::std::os::raw::c_char,
    pub api: RenderGraphPassApi,
}
impl Default for RenderGraphPassI {
    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()
        }
    }
}

// Extensions generated by machinery-generator

use const_cstr::{const_cstr, ConstCStr};

use crate::foundation::*;
use crate::plugins::renderer::*;
use crate::plugins::shader_system::*;
use crate::plugins::ui::{ToolbarI, UiStyleT};

impl RenderGraphApi {
    pub unsafe fn create(
        &self,
        sort_key: u64,
        static_sort_key: bool,
        allocator: *mut AllocatorI,
        shader_repository: *mut ShaderRepositoryO,
    ) -> *mut RenderGraphO {
        self.create.unwrap()(sort_key, static_sort_key, allocator, shader_repository)
    }

    pub unsafe fn destroy(
        &self,
        graph: *mut RenderGraphO,
        res_buf: *mut RendererResourceCommandBufferO,
    ) {
        self.destroy.unwrap()(graph, res_buf)
    }

    pub unsafe fn sort_key(
        &self,
        graph: *const RenderGraphO,
        material_layer_name: StrhashT,
    ) -> u64 {
        self.sort_key.unwrap()(graph, material_layer_name)
    }

    pub unsafe fn register_gpu_image(
        &self,
        graph: *mut RenderGraphO,
        name: StrhashT,
        resource: RendererHandleT,
        resource_state: u32,
        image_desc: *const RendererImageDescT,
    ) {
        self.register_gpu_image.unwrap()(graph, name, resource, resource_state, image_desc)
    }

    pub unsafe fn register_gpu_buffer(
        &self,
        graph: *mut RenderGraphO,
        name: StrhashT,
        resource: RendererHandleT,
        resource_state: u32,
        buffer_desc: *const RendererBufferDescT,
    ) {
        self.register_gpu_buffer.unwrap()(graph, name, resource, resource_state, buffer_desc)
    }

    pub unsafe fn write_blackboard(
        &self,
        graph: *mut RenderGraphO,
        key: StrhashT,
        value: RenderGraphBlackboardValue,
    ) {
        self.write_blackboard.unwrap()(graph, key, value)
    }

    pub unsafe fn read_blackboard(
        &self,
        graph: *const RenderGraphO,
        key: StrhashT,
        value: *mut RenderGraphBlackboardValue,
    ) -> bool {
        self.read_blackboard.unwrap()(graph, key, value)
    }

    pub unsafe fn setup_passes(
        &self,
        graph: *mut RenderGraphO,
        render_module: *mut RenderGraphModuleO,
    ) {
        self.setup_passes.unwrap()(graph, render_module)
    }

    pub unsafe fn validate_and_build(
        &self,
        graph: *mut RenderGraphO,
        backend: *mut RendererBackendI,
        device_affinity_mask: u32,
    ) -> bool {
        self.validate_and_build.unwrap()(graph, backend, device_affinity_mask)
    }

    pub unsafe fn visualize(
        &self,
        graph: *const RenderGraphO,
        ta: *mut TempAllocatorI,
    ) -> *mut ::std::os::raw::c_char {
        self.visualize.unwrap()(graph, ta)
    }

    pub unsafe fn execute(
        &self,
        graph: *mut RenderGraphO,
        backend: *mut RendererBackendI,
        shader_context: *const ShaderSystemContextO,
        device_affinity_mask: u32,
    ) -> *mut AtomicCounterO {
        self.execute.unwrap()(graph, backend, shader_context, device_affinity_mask)
    }

    pub unsafe fn resource_buffers(
        &self,
        graph: *const RenderGraphO,
        resource_buffers: *mut *mut RendererResourceCommandBufferO,
        num_resource_buffers: *mut u32,
    ) {
        self.resource_buffers.unwrap()(graph, resource_buffers, num_resource_buffers)
    }

    pub unsafe fn command_buffers(
        &self,
        graph: *const RenderGraphO,
        command_buffers: *mut *mut RendererCommandBufferO,
        num_command_buffers: *mut u32,
    ) {
        self.command_buffers.unwrap()(graph, command_buffers, num_command_buffers)
    }

    pub unsafe fn viewers(
        &self,
        graph: *mut RenderGraphO,
        viewers: *mut RenderGraphViewerT,
        num_viewers: *mut u32,
    ) {
        self.viewers.unwrap()(graph, viewers, num_viewers)
    }

    pub unsafe fn backend_handle(
        &self,
        graph: *const RenderGraphO,
        graph_handle: RenderGraphHandleT,
    ) -> RendererHandleT {
        self.backend_handle.unwrap()(graph, graph_handle)
    }

    pub unsafe fn data_requested(&self, graph: *const RenderGraphO, name: StrhashT) -> bool {
        self.data_requested.unwrap()(graph, name)
    }

    pub unsafe fn external_resource(
        &self,
        graph: *mut RenderGraphO,
        name: StrhashT,
    ) -> RenderGraphHandleT {
        self.external_resource.unwrap()(graph, name)
    }

    pub unsafe fn image_desc(
        &self,
        graph: *mut RenderGraphO,
        handle: RenderGraphHandleT,
    ) -> *const RendererImageDescT {
        self.image_desc.unwrap()(graph, handle)
    }

    pub unsafe fn buffer_desc(
        &self,
        graph: *mut RenderGraphO,
        handle: RenderGraphHandleT,
    ) -> *const RendererBufferDescT {
        self.buffer_desc.unwrap()(graph, handle)
    }
}

impl crate::Api for RenderGraphApi {
    const NAME: ConstCStr = const_cstr!("tm_render_graph_api");
}

impl RenderGraphModuleApi {
    pub unsafe fn create(
        &self,
        allocator: *mut AllocatorI,
        name: *const ::std::os::raw::c_char,
    ) -> *mut RenderGraphModuleO {
        self.create.unwrap()(allocator, name)
    }

    pub unsafe fn destroy(
        &self,
        render_module: *mut RenderGraphModuleO,
        res_buf: *mut RendererResourceCommandBufferO,
    ) {
        self.destroy.unwrap()(render_module, res_buf)
    }

    pub unsafe fn name(&self, render_module: *const RenderGraphModuleO) -> StrhashT {
        self.name.unwrap()(render_module)
    }

    pub unsafe fn human_readable_name(
        &self,
        render_module: *const RenderGraphModuleO,
    ) -> *const ::std::os::raw::c_char {
        self.human_readable_name.unwrap()(render_module)
    }

    pub unsafe fn add_pass(
        &self,
        render_module: *mut RenderGraphModuleO,
        pass: *const RenderGraphPassI,
    ) {
        self.add_pass.unwrap()(render_module, pass)
    }

    pub unsafe fn add_extension_point(
        &self,
        render_module: *mut RenderGraphModuleO,
        extension_point_name: StrhashT,
    ) {
        self.add_extension_point.unwrap()(render_module, extension_point_name)
    }

    pub unsafe fn insert_extension(
        &self,
        render_module: *mut RenderGraphModuleO,
        extension_point_name: StrhashT,
        extension: *mut RenderGraphModuleO,
        ordering_weight: f32,
    ) -> bool {
        self.insert_extension.unwrap()(
            render_module,
            extension_point_name,
            extension,
            ordering_weight,
        )
    }

    pub unsafe fn remove_extension(
        &self,
        render_module: *mut RenderGraphModuleO,
        res_buf: *mut RendererResourceCommandBufferO,
        extension_point_name: StrhashT,
        extension: *mut RenderGraphModuleO,
    ) -> bool {
        self.remove_extension.unwrap()(render_module, res_buf, extension_point_name, extension)
    }

    pub unsafe fn add_sub_module(
        &self,
        render_module: *mut RenderGraphModuleO,
        shader_layer_name: StrhashT,
        sub_module: *mut RenderGraphModuleO,
    ) {
        self.add_sub_module.unwrap()(render_module, shader_layer_name, sub_module)
    }

    pub unsafe fn init_passes(
        &self,
        render_module: *mut RenderGraphModuleO,
        res_buf: *mut RendererResourceCommandBufferO,
    ) {
        self.init_passes.unwrap()(render_module, res_buf)
    }

    pub unsafe fn set_editor_submenu_interface(
        &self,
        render_module: *mut RenderGraphModuleO,
        submenu_i: *const RenderGraphModuleEditorSubmenuI,
    ) {
        self.set_editor_submenu_interface.unwrap()(render_module, submenu_i)
    }

    pub unsafe fn editor_submenu(
        &self,
        render_module: *mut RenderGraphModuleO,
        ui: *mut UiO,
        uistyle: *const UiStyleT,
        submenu_pos: Vec2T,
    ) {
        self.editor_submenu.unwrap()(render_module, ui, uistyle, submenu_pos)
    }

    pub unsafe fn set_editor_toolbar(
        &self,
        render_module: *mut RenderGraphModuleO,
        toolbar: *mut ToolbarI,
    ) {
        self.set_editor_toolbar.unwrap()(render_module, toolbar)
    }

    pub unsafe fn editor_toolbars(
        &self,
        render_module: *mut RenderGraphModuleO,
        ta: *mut TempAllocatorI,
    ) -> *mut ToolbarI {
        self.editor_toolbars.unwrap()(render_module, ta)
    }

    pub unsafe fn create_persistent_gpu_image(
        &self,
        render_module: *mut RenderGraphModuleO,
        name: StrhashT,
        image_desc: *const RendererImageDescT,
        inherits: StrhashT,
        scale: *const f32,
    ) {
        self.create_persistent_gpu_image.unwrap()(render_module, name, image_desc, inherits, scale)
    }

    pub unsafe fn create_persistent_gpu_buffer(
        &self,
        render_module: *mut RenderGraphModuleO,
        name: StrhashT,
        buffer_desc: *const RendererBufferDescT,
        inherits: StrhashT,
    ) {
        self.create_persistent_gpu_buffer.unwrap()(render_module, name, buffer_desc, inherits)
    }
}

impl crate::Api for RenderGraphModuleApi {
    const NAME: ConstCStr = const_cstr!("tm_render_graph_module_api");
}

impl RenderGraphSetupApi {
    pub unsafe fn external_resource(
        &self,
        graph_setup: *mut RenderGraphSetupO,
        name: StrhashT,
    ) -> RenderGraphHandleT {
        self.external_resource.unwrap()(graph_setup, name)
    }

    pub unsafe fn image_desc(
        &self,
        graph_setup: *mut RenderGraphSetupO,
        handle: RenderGraphHandleT,
    ) -> *const RendererImageDescT {
        self.image_desc.unwrap()(graph_setup, handle)
    }

    pub unsafe fn buffer_desc(
        &self,
        graph_setup: *mut RenderGraphSetupO,
        handle: RenderGraphHandleT,
    ) -> *const RendererBufferDescT {
        self.buffer_desc.unwrap()(graph_setup, handle)
    }

    pub unsafe fn shader_repository(
        &self,
        graph_setup: *mut RenderGraphSetupO,
    ) -> *mut ShaderRepositoryO {
        self.shader_repository.unwrap()(graph_setup)
    }

    pub unsafe fn create_gpu_images(
        &self,
        graph_setup: *mut RenderGraphSetupO,
        image_descs: *const RendererImageDescT,
        num_images: u32,
        handles: *mut RenderGraphHandleT,
    ) {
        self.create_gpu_images.unwrap()(graph_setup, image_descs, num_images, handles)
    }

    pub unsafe fn create_gpu_buffers(
        &self,
        graph_setup: *mut RenderGraphSetupO,
        buffer_descs: *const RendererBufferDescT,
        num_buffers: u32,
        handles: *mut RenderGraphHandleT,
    ) {
        self.create_gpu_buffers.unwrap()(graph_setup, buffer_descs, num_buffers, handles)
    }

    pub unsafe fn read_gpu_resource(
        &self,
        graph_setup: *mut RenderGraphSetupO,
        handle: RenderGraphHandleT,
        wanted_resource_state: u32,
        subresource_view: *const RendererImageViewT,
    ) {
        self.read_gpu_resource.unwrap()(
            graph_setup,
            handle,
            wanted_resource_state,
            subresource_view,
        )
    }

    pub unsafe fn write_gpu_resource(
        &self,
        graph_setup: *mut RenderGraphSetupO,
        handle: RenderGraphHandleT,
        write_bind_flags: RenderGraphWriteBindFlag,
        wanted_resource_state: u32,
        load_op: u32,
        bind_slot: u32,
        blackboard_key: StrhashT,
        subresource_view: *const RendererImageViewT,
    ) {
        self.write_gpu_resource.unwrap()(
            graph_setup,
            handle,
            write_bind_flags,
            wanted_resource_state,
            load_op,
            bind_slot,
            blackboard_key,
            subresource_view,
        )
    }

    pub unsafe fn set_active(&self, graph_setup: *mut RenderGraphSetupO, state: bool) {
        self.set_active.unwrap()(graph_setup, state)
    }

    pub unsafe fn set_early_out(&self, graph_setup: *mut RenderGraphSetupO, state: bool) {
        self.set_early_out.unwrap()(graph_setup, state)
    }

    pub unsafe fn set_output(&self, graph_setup: *mut RenderGraphSetupO, state: bool) {
        self.set_output.unwrap()(graph_setup, state)
    }

    pub unsafe fn set_request_async_compute(
        &self,
        graph_setup: *mut RenderGraphSetupO,
        state: bool,
    ) {
        self.set_request_async_compute.unwrap()(graph_setup, state)
    }

    pub unsafe fn set_request_multi_gpu(
        &self,
        graph_setup: *mut RenderGraphSetupO,
        device_affinity_mask: u32,
    ) {
        self.set_request_multi_gpu.unwrap()(graph_setup, device_affinity_mask)
    }

    pub unsafe fn expose_as_material_layer(
        &self,
        graph_setup: *mut RenderGraphSetupO,
        layer_name: StrhashT,
    ) {
        self.expose_as_material_layer.unwrap()(graph_setup, layer_name)
    }

    pub unsafe fn write_blackboard(
        &self,
        graph_setup: *mut RenderGraphSetupO,
        key: StrhashT,
        value: RenderGraphBlackboardValue,
    ) {
        self.write_blackboard.unwrap()(graph_setup, key, value)
    }

    pub unsafe fn read_blackboard(
        &self,
        graph_setup: *mut RenderGraphSetupO,
        key: StrhashT,
        value: *mut RenderGraphBlackboardValue,
    ) -> bool {
        self.read_blackboard.unwrap()(graph_setup, key, value)
    }

    pub unsafe fn request_data(&self, graph_setup: *mut RenderGraphSetupO, name: StrhashT) {
        self.request_data.unwrap()(graph_setup, name)
    }
}

impl crate::Api for RenderGraphSetupApi {
    const NAME: ConstCStr = const_cstr!("tm_render_graph_setup_api");
}

impl RenderGraphExecuteApi {
    pub unsafe fn default_command_buffer(
        &self,
        graph_execute: *mut RenderGraphExecuteO,
    ) -> *mut RendererCommandBufferO {
        self.default_command_buffer.unwrap()(graph_execute)
    }

    pub unsafe fn default_resource_command_buffer(
        &self,
        graph_execute: *mut RenderGraphExecuteO,
    ) -> *mut RendererResourceCommandBufferO {
        self.default_resource_command_buffer.unwrap()(graph_execute)
    }

    pub unsafe fn shader_context(
        &self,
        graph_execute: *mut RenderGraphExecuteO,
    ) -> *const ShaderSystemContextO {
        self.shader_context.unwrap()(graph_execute)
    }

    pub unsafe fn device_affinity_mask(&self, graph_execute: *mut RenderGraphExecuteO) -> u32 {
        self.device_affinity_mask.unwrap()(graph_execute)
    }

    pub unsafe fn backend_handle(
        &self,
        graph_execute: *mut RenderGraphExecuteO,
        graph_handle: RenderGraphHandleT,
        subresource_view: *const RendererImageViewT,
    ) -> RendererHandleT {
        self.backend_handle.unwrap()(graph_execute, graph_handle, subresource_view)
    }

    pub unsafe fn run_sub_module(
        &self,
        graph_execute: *mut RenderGraphExecuteO,
        sub_module_name: StrhashT,
        sort_key: u64,
        commands: *mut RendererCommandBufferO,
    ) {
        self.run_sub_module.unwrap()(graph_execute, sub_module_name, sort_key, commands)
    }

    pub unsafe fn read_blackboard(
        &self,
        graph_execute: *mut RenderGraphExecuteO,
        key: StrhashT,
        value: *mut RenderGraphBlackboardValue,
    ) -> bool {
        self.read_blackboard.unwrap()(graph_execute, key, value)
    }

    pub unsafe fn append_viewers(
        &self,
        graph_execute: *mut RenderGraphExecuteO,
        viewers: *const RenderGraphViewerT,
        num_viewers: u32,
    ) -> u32 {
        self.append_viewers.unwrap()(graph_execute, viewers, num_viewers)
    }
}

impl crate::Api for RenderGraphExecuteApi {
    const NAME: ConstCStr = const_cstr!("tm_render_graph_execute_api");
}

impl RenderGraphPassApi {
    pub unsafe fn init_pass(
        &self,
        const_data: *mut ::std::os::raw::c_void,
        allocator: *mut AllocatorI,
        res_buf: *mut RendererResourceCommandBufferO,
    ) {
        self.init_pass.unwrap()(const_data, allocator, res_buf)
    }

    pub unsafe fn shutdown_pass(
        &self,
        const_data: *mut ::std::os::raw::c_void,
        allocator: *mut AllocatorI,
        res_buf: *mut RendererResourceCommandBufferO,
    ) {
        self.shutdown_pass.unwrap()(const_data, allocator, res_buf)
    }

    pub unsafe fn setup_pass(
        &self,
        const_data: *const ::std::os::raw::c_void,
        runtime_data: *mut ::std::os::raw::c_void,
        graph_setup: *mut RenderGraphSetupO,
    ) {
        self.setup_pass.unwrap()(const_data, runtime_data, graph_setup)
    }

    pub unsafe fn execute_pass(
        &self,
        const_data: *const ::std::os::raw::c_void,
        runtime_data: *mut ::std::os::raw::c_void,
        sort_key: u64,
        graph_execute: *mut RenderGraphExecuteO,
    ) {
        self.execute_pass.unwrap()(const_data, runtime_data, sort_key, graph_execute)
    }
}