Increase all_tuples limit to avoid error in queue_mesh_view_bind_groups
This commit is contained in:
parent
727a89dbe7
commit
5d7f61911e
@ -240,4 +240,4 @@ macro_rules! impl_exclusive_system_function {
|
||||
}
|
||||
// Note that we rely on the highest impl to be <= the highest order of the tuple impls
|
||||
// of `SystemParam` created.
|
||||
all_tuples!(impl_exclusive_system_function, 0, 16, F);
|
||||
all_tuples!(impl_exclusive_system_function, 0, 17, F);
|
||||
|
||||
@ -86,4 +86,4 @@ macro_rules! impl_exclusive_system_param_tuple {
|
||||
};
|
||||
}
|
||||
|
||||
all_tuples!(impl_exclusive_system_param_tuple, 0, 16, P);
|
||||
all_tuples!(impl_exclusive_system_param_tuple, 0, 17, P);
|
||||
|
||||
@ -687,4 +687,4 @@ macro_rules! impl_system_function {
|
||||
|
||||
// Note that we rely on the highest impl to be <= the highest order of the tuple impls
|
||||
// of `SystemParam` created.
|
||||
all_tuples!(impl_system_function, 0, 16, F);
|
||||
all_tuples!(impl_system_function, 0, 17, F);
|
||||
|
||||
@ -1410,7 +1410,7 @@ macro_rules! impl_system_param_tuple {
|
||||
};
|
||||
}
|
||||
|
||||
all_tuples!(impl_system_param_tuple, 0, 16, P);
|
||||
all_tuples!(impl_system_param_tuple, 0, 17, P);
|
||||
|
||||
pub mod lifetimeless {
|
||||
pub type SQuery<Q, F = ()> = super::Query<'static, 'static, Q, F>;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user