| 681 | } |
| 682 | |
| 683 | clip_image_u8 * make_clip_image_u8() { |
| 684 | auto img = new clip_image_u8(); |
| 685 | return img; |
| 686 | } |
| 687 | clip_image_f32 * make_clip_image_f32() { return new clip_image_f32(); } |
| 688 | |
| 689 | void clip_image_u8_free(clip_image_u8 * img) { if (img->data) { delete[] img->data; } delete img; } |
no outgoing calls
no test coverage detected