Toggle given pixel element Debug function, used by cli only XXX
| 2242 | // Toggle given pixel element |
| 2243 | // Debug function, used by cli only XXX |
| 2244 | void Pixel_pixelToggle( PixelElement *elem ) |
| 2245 | { |
| 2246 | // Toggle each of the channels of the pixel |
| 2247 | for ( uint8_t ch = 0; ch < elem->channels; ch++ ) |
| 2248 | { |
| 2249 | Pixel_channelToggle( elem->indices[ch] ); |
| 2250 | } |
| 2251 | } |
| 2252 | |
| 2253 | |
| 2254 |
no test coverage detected
searching dependent graphs…