2012-10-24 17:11:42 +00:00
|
|
|
#ifndef MPLAYER_DRAW_BMP_H
|
|
|
|
#define MPLAYER_DRAW_BMP_H
|
|
|
|
|
2013-11-24 11:58:06 +00:00
|
|
|
#include "osd.h"
|
2012-10-19 15:49:49 +00:00
|
|
|
|
2012-10-24 17:11:42 +00:00
|
|
|
struct mp_image;
|
|
|
|
struct sub_bitmaps;
|
2012-10-19 15:49:49 +00:00
|
|
|
struct mp_draw_sub_cache;
|
|
|
|
void mp_draw_sub_bitmaps(struct mp_draw_sub_cache **cache, struct mp_image *dst,
|
2012-10-27 16:06:09 +00:00
|
|
|
struct sub_bitmaps *sbs);
|
2012-10-19 15:49:49 +00:00
|
|
|
|
|
|
|
extern const bool mp_draw_sub_formats[SUBBITMAP_COUNT];
|
2012-10-24 17:11:42 +00:00
|
|
|
|
|
|
|
#endif /* MPLAYER_DRAW_BMP_H */
|
|
|
|
|
|
|
|
// vim: ts=4 sw=4 et tw=80
|