| 688 | |
| 689 | void clip_image_u8_free(clip_image_u8 * img) { if (img->data) { delete[] img->data; } delete img; } |
| 690 | void clip_image_f32_free(clip_image_f32 * img) { if (img->data) { delete[] img->data; } delete img; } |
| 691 | |
| 692 | static void build_clip_img_from_data(const stbi_uc * data, int nx, int ny, clip_image_u8 * img) { |
| 693 | img->nx = nx; |
no outgoing calls
no test coverage detected