| 278 | } |
| 279 | |
| 280 | static void stbiw__write3(stbi__write_context *s, unsigned char a, unsigned char b, unsigned char c) |
| 281 | { |
| 282 | unsigned char arr[3]; |
| 283 | arr[0] = a, arr[1] = b, arr[2] = c; |
| 284 | s->func(s->context, arr, 3); |
| 285 | } |
| 286 | |
| 287 | static void stbiw__write_pixel(stbi__write_context *s, int rgb_dir, int comp, int write_alpha, int expand_mono, unsigned char *d) |
| 288 | { |
no outgoing calls
no test coverage detected