Set each of the channels to a specific value
| 2231 | |
| 2232 | // Set each of the channels to a specific value |
| 2233 | void Pixel_pixelSet( PixelElement *elem, uint32_t value ) |
| 2234 | { |
| 2235 | // Set each of the channels of the pixel |
| 2236 | for ( uint8_t ch = 0; ch < elem->channels; ch++ ) |
| 2237 | { |
| 2238 | Pixel_channelSet( elem->indices[ch], value ); |
| 2239 | } |
| 2240 | } |
| 2241 | |
| 2242 | // Toggle given pixel element |
| 2243 | // Debug function, used by cli only XXX |
no test coverage detected
searching dependent graphs…