| 5344 | } |
| 5345 | |
| 5346 | static unsigned addChunk_sRGB(ucvector* out, const LodePNGInfo* info) { |
| 5347 | unsigned char data = info->srgb_intent; |
| 5348 | return lodepng_chunk_createv(out, 1, "sRGB", &data); |
| 5349 | } |
| 5350 | |
| 5351 | static unsigned addChunk_iCCP(ucvector* out, const LodePNGInfo* info, LodePNGCompressSettings* zlibsettings) { |
| 5352 | unsigned error = 0; |
no test coverage detected