| 130 | } |
| 131 | |
| 132 | void FinalizeOps(OpRcPtrVec & opVec) |
| 133 | { |
| 134 | for (auto op : opVec) |
| 135 | { |
| 136 | // Prepare LUT 1D for inversion and ensure Matrix & Range are forward. |
| 137 | op->finalize(); |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | // Some rather complex ops can get replaced based on their data by simpler ops. |
| 142 | // For instance CDL that does not use power will get replaced. |
no test coverage detected