diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2002-10-29 00:36:21 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2002-10-29 00:36:21 +0000 |
commit | ef61d16617f3be26e448b8c7ff73181c717df0a7 (patch) | |
tree | ab88896e41cf47b7022e89460c64dacc474b7560 /src/video_out/alphablend.h | |
parent | 2399cbcd435f77dce3c609e19e3979ced0c3bb7a (diff) | |
download | xine-lib-ef61d16617f3be26e448b8c7ff73181c717df0a7.tar.gz xine-lib-ef61d16617f3be26e448b8c7ff73181c717df0a7.tar.bz2 |
Updated pgx64 to newest API. Changed alphablend code to handle pitches.
CVS patchset: 3078
CVS date: 2002/10/29 00:36:21
Diffstat (limited to 'src/video_out/alphablend.h')
-rw-r--r-- | src/video_out/alphablend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/alphablend.h b/src/video_out/alphablend.h index f039fe568..759b61254 100644 --- a/src/video_out/alphablend.h +++ b/src/video_out/alphablend.h @@ -47,10 +47,10 @@ void blend_rgb32 (uint8_t * img, vo_overlay_t * img_overl, int dst_width, int dst_height); void blend_yuv (uint8_t *dst_base[3], vo_overlay_t * img_overl, - int dst_width, int dst_height); + int dst_width, int dst_height, int dst_pitches[3]); void blend_yuy2 (uint8_t * dst_img, vo_overlay_t * img_overl, - int dst_width, int dst_height); + int dst_width, int dst_height, int dst_pitch); void crop_overlay (vo_overlay_t * overlay); |