Increase all_tuples limit to avoid error in queue_mesh_view_bind_groups

This commit is contained in:
Marco Buono 2023-04-16 15:59:26 -03:00
parent 727a89dbe7
commit 5d7f61911e
4 changed files with 4 additions and 4 deletions

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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>;