@@ -55,40 +55,40 @@ public static unsafe int GetLayerInfo<T0>(this LoaderLayers thisApi, [Flow(FlowD
55
55
return thisApi . GetLayerInfo ( param_name , param_value_size , out param_value . GetPinnableReference ( ) , out param_value_size_ret . GetPinnableReference ( ) ) ;
56
56
}
57
57
58
- public static unsafe int InitLayer ( this LoaderLayers thisApi , [ Flow ( FlowDirection . In ) ] uint num_entries , [ Flow ( FlowDirection . In ) ] void * target_dispatch , [ Flow ( FlowDirection . Out ) ] Span < uint > num_entries_ret , [ Flow ( FlowDirection . In ) ] void * * layer_dispatch )
58
+ public static unsafe int InitLayer ( this LoaderLayers thisApi , [ Flow ( FlowDirection . In ) ] uint num_entries , [ Flow ( FlowDirection . In ) ] void * target_dispatch , [ Flow ( FlowDirection . Out ) ] Span < uint > num_entries_ret , [ Flow ( FlowDirection . In ) ] void * * layer_dispatch_ret )
59
59
{
60
60
// SpanOverloader
61
- return thisApi . InitLayer ( num_entries , target_dispatch , out num_entries_ret . GetPinnableReference ( ) , layer_dispatch ) ;
61
+ return thisApi . InitLayer ( num_entries , target_dispatch , out num_entries_ret . GetPinnableReference ( ) , layer_dispatch_ret ) ;
62
62
}
63
63
64
- public static unsafe int InitLayer ( this LoaderLayers thisApi , [ Flow ( FlowDirection . In ) ] uint num_entries , [ Flow ( FlowDirection . In ) ] void * target_dispatch , [ Flow ( FlowDirection . Out ) ] Span < uint > num_entries_ret , [ Flow ( FlowDirection . In ) ] in void * layer_dispatch )
64
+ public static unsafe int InitLayer ( this LoaderLayers thisApi , [ Flow ( FlowDirection . In ) ] uint num_entries , [ Flow ( FlowDirection . In ) ] void * target_dispatch , [ Flow ( FlowDirection . Out ) ] Span < uint > num_entries_ret , [ Flow ( FlowDirection . In ) ] in void * layer_dispatch_ret )
65
65
{
66
66
// SpanOverloader
67
- return thisApi . InitLayer ( num_entries , target_dispatch , out num_entries_ret . GetPinnableReference ( ) , in layer_dispatch ) ;
67
+ return thisApi . InitLayer ( num_entries , target_dispatch , out num_entries_ret . GetPinnableReference ( ) , in layer_dispatch_ret ) ;
68
68
}
69
69
70
- public static unsafe int InitLayer < T0 > ( this LoaderLayers thisApi , [ Flow ( FlowDirection . In ) ] uint num_entries , [ Flow ( FlowDirection . In ) ] ReadOnlySpan < T0 > target_dispatch , [ Flow ( FlowDirection . Out ) ] uint * num_entries_ret , [ Flow ( FlowDirection . In ) ] void * * layer_dispatch ) where T0 : unmanaged
70
+ public static unsafe int InitLayer < T0 > ( this LoaderLayers thisApi , [ Flow ( FlowDirection . In ) ] uint num_entries , [ Flow ( FlowDirection . In ) ] ReadOnlySpan < T0 > target_dispatch , [ Flow ( FlowDirection . Out ) ] uint * num_entries_ret , [ Flow ( FlowDirection . In ) ] void * * layer_dispatch_ret ) where T0 : unmanaged
71
71
{
72
72
// SpanOverloader
73
- return thisApi . InitLayer ( num_entries , in target_dispatch . GetPinnableReference ( ) , num_entries_ret , layer_dispatch ) ;
73
+ return thisApi . InitLayer ( num_entries , in target_dispatch . GetPinnableReference ( ) , num_entries_ret , layer_dispatch_ret ) ;
74
74
}
75
75
76
- public static unsafe int InitLayer < T0 > ( this LoaderLayers thisApi , [ Flow ( FlowDirection . In ) ] uint num_entries , [ Flow ( FlowDirection . In ) ] ReadOnlySpan < T0 > target_dispatch , [ Flow ( FlowDirection . Out ) ] uint * num_entries_ret , [ Flow ( FlowDirection . In ) ] in void * layer_dispatch ) where T0 : unmanaged
76
+ public static unsafe int InitLayer < T0 > ( this LoaderLayers thisApi , [ Flow ( FlowDirection . In ) ] uint num_entries , [ Flow ( FlowDirection . In ) ] ReadOnlySpan < T0 > target_dispatch , [ Flow ( FlowDirection . Out ) ] uint * num_entries_ret , [ Flow ( FlowDirection . In ) ] in void * layer_dispatch_ret ) where T0 : unmanaged
77
77
{
78
78
// SpanOverloader
79
- return thisApi . InitLayer ( num_entries , in target_dispatch . GetPinnableReference ( ) , num_entries_ret , in layer_dispatch ) ;
79
+ return thisApi . InitLayer ( num_entries , in target_dispatch . GetPinnableReference ( ) , num_entries_ret , in layer_dispatch_ret ) ;
80
80
}
81
81
82
- public static unsafe int InitLayer < T0 > ( this LoaderLayers thisApi , [ Flow ( FlowDirection . In ) ] uint num_entries , [ Flow ( FlowDirection . In ) ] ReadOnlySpan < T0 > target_dispatch , [ Flow ( FlowDirection . Out ) ] Span < uint > num_entries_ret , [ Flow ( FlowDirection . In ) ] void * * layer_dispatch ) where T0 : unmanaged
82
+ public static unsafe int InitLayer < T0 > ( this LoaderLayers thisApi , [ Flow ( FlowDirection . In ) ] uint num_entries , [ Flow ( FlowDirection . In ) ] ReadOnlySpan < T0 > target_dispatch , [ Flow ( FlowDirection . Out ) ] Span < uint > num_entries_ret , [ Flow ( FlowDirection . In ) ] void * * layer_dispatch_ret ) where T0 : unmanaged
83
83
{
84
84
// SpanOverloader
85
- return thisApi . InitLayer ( num_entries , in target_dispatch . GetPinnableReference ( ) , out num_entries_ret . GetPinnableReference ( ) , layer_dispatch ) ;
85
+ return thisApi . InitLayer ( num_entries , in target_dispatch . GetPinnableReference ( ) , out num_entries_ret . GetPinnableReference ( ) , layer_dispatch_ret ) ;
86
86
}
87
87
88
- public static unsafe int InitLayer < T0 > ( this LoaderLayers thisApi , [ Flow ( FlowDirection . In ) ] uint num_entries , [ Flow ( FlowDirection . In ) ] ReadOnlySpan < T0 > target_dispatch , [ Flow ( FlowDirection . Out ) ] Span < uint > num_entries_ret , [ Flow ( FlowDirection . In ) ] in void * layer_dispatch ) where T0 : unmanaged
88
+ public static unsafe int InitLayer < T0 > ( this LoaderLayers thisApi , [ Flow ( FlowDirection . In ) ] uint num_entries , [ Flow ( FlowDirection . In ) ] ReadOnlySpan < T0 > target_dispatch , [ Flow ( FlowDirection . Out ) ] Span < uint > num_entries_ret , [ Flow ( FlowDirection . In ) ] in void * layer_dispatch_ret ) where T0 : unmanaged
89
89
{
90
90
// SpanOverloader
91
- return thisApi . InitLayer ( num_entries , in target_dispatch . GetPinnableReference ( ) , out num_entries_ret . GetPinnableReference ( ) , in layer_dispatch ) ;
91
+ return thisApi . InitLayer ( num_entries , in target_dispatch . GetPinnableReference ( ) , out num_entries_ret . GetPinnableReference ( ) , in layer_dispatch_ret ) ;
92
92
}
93
93
94
94
}
0 commit comments