From 3738bfb451c8558ed6f3710a72d418e7c68f7f5b Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 1 Jul 2016 20:29:45 +0200 Subject: bitmap_packer: remove some unused functions --- video/out/bitmap_packer.h | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'video/out/bitmap_packer.h') diff --git a/video/out/bitmap_packer.h b/video/out/bitmap_packer.h index 8fd2fce599..97bf88f3e2 100644 --- a/video/out/bitmap_packer.h +++ b/video/out/bitmap_packer.h @@ -48,20 +48,4 @@ void packer_set_size(struct bitmap_packer *packer, int size); */ int packer_pack(struct bitmap_packer *packer); -/* Like above, but packer->count will be automatically set and - * packer->in will be reallocated if needed and filled from the - * given image list. - */ -int packer_pack_from_subbitmaps(struct bitmap_packer *packer, - struct sub_bitmaps *b); - -// Copy the (already packed) sub-bitmaps from b to the image in data. -// data must point to an image that is at least (packer->w, packer->h) big. -// The image has the given stride (bytes between (x, y) to (x, y + 1)), and the -// pixel format used by both the sub-bitmaps and the image uses pixel_stride -// bytes per pixel (bytes between (x, y) to (x + 1, y)). -// If packer->padding is set, the padding borders are cleared with 0. -void packer_copy_subbitmaps(struct bitmap_packer *packer, struct sub_bitmaps *b, - void *data, int pixel_stride, int stride); - #endif -- cgit v1.2.3