diff options
Diffstat (limited to 'src/video_out/alphablend.h')
-rw-r--r-- | src/video_out/alphablend.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/video_out/alphablend.h b/src/video_out/alphablend.h index 7afa470f7..6043c6071 100644 --- a/src/video_out/alphablend.h +++ b/src/video_out/alphablend.h @@ -28,8 +28,11 @@ #include "video_out.h" -void blend_rgb (uint8_t * img, vo_overlay_t * overlay, int width, - +void blend_rgb16 (uint8_t * img, vo_overlay_t * overlay, int width, + int height); +void blend_rgb24 (uint8_t * img, vo_overlay_t * overlay, int width, + int height); +void blend_rgb32 (uint8_t * img, vo_overlay_t * overlay, int width, int height); void blend_yuv (uint8_t * img, vo_overlay_t * overlay, int width, |