Helper to create RGB pixel array in wire order
| 36 | |
| 37 | /// Helper to create RGB pixel array in wire order |
| 38 | fl::array<u8, 3> makeRGBPixel(u8 r, u8 g, u8 b) { |
| 39 | return {r, g, b}; |
| 40 | } |
| 41 | |
| 42 | /// Helper to verify output contains expected RGB bytes at offset |
| 43 | void verifyRGBAt(const fl::vector<u8>& output, size_t offset, u8 r, u8 g, u8 b) { |