1
0
Fork 0
forked from wry/wry

cmm: add color-management module

This commit is contained in:
Julian Orth 2025-03-01 13:54:12 +01:00
parent ed1955d3d1
commit 82085a3858
27 changed files with 1182 additions and 20 deletions

View file

@ -185,10 +185,10 @@ macro_rules! shared_ids {
}
macro_rules! linear_ids {
($ids:ident, $id:ident) => {
($ids:ident, $id:ident $(,)?) => {
linear_ids!($ids, $id, u32);
};
($ids:ident, $id:ident, $ty:ty) => {
($ids:ident, $id:ident, $ty:ty $(,)?) => {
pub struct $ids {
next: crate::utils::numcell::NumCell<$ty>,
}