Apply the slope component to the the pixel's values
| 181 | |
| 182 | // Apply the slope component to the the pixel's values |
| 183 | inline void ApplySlope(float * pix, const float * slope) |
| 184 | { |
| 185 | pix[0] = pix[0] * slope[0]; |
| 186 | pix[1] = pix[1] * slope[1]; |
| 187 | pix[2] = pix[2] * slope[2]; |
| 188 | } |
| 189 | |
| 190 | // Apply the offset component to the the pixel's values |
| 191 | inline void ApplyOffset(float * pix, const float * offset) |
no outgoing calls
no test coverage detected