summaryrefslogtreecommitdiffstats
path: root/libmenu/menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmenu/menu.c')
-rw-r--r--libmenu/menu.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/libmenu/menu.c b/libmenu/menu.c
index 6113fb6dce..bd807c502b 100644
--- a/libmenu/menu.c
+++ b/libmenu/menu.c
@@ -563,11 +563,12 @@ char* menu_text_get_next_line(char* txt, int max_width) {
}
-void menu_draw_box(mp_image_t* mpi, char grey, char alpha, int x, int y, int w, int h) {
+void menu_draw_box(mp_image_t* mpi,unsigned char grey,unsigned char alpha, int x, int y, int w, int h) {
draw_alpha_f draw_alpha = get_draw_alpha(mpi->imgfmt);
+ int g;
if(!draw_alpha) {
- printf("Unsupported outformat !!!!\n");
+ mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_LIBMENU_UnsupportedOutformat);
return;
}
@@ -577,11 +578,14 @@ void menu_draw_box(mp_image_t* mpi, char grey, char alpha, int x, int y, int w,
if(x+w > mpi->w) w = mpi->w-x;
if(y < 0) h += y, y = 0;
if(y+h > mpi->h) h = mpi->h-y;
-
+
+ g = ((256-alpha)*grey)>>8;
+ if(g < 1) g = 1;
+
{
int stride = (w+7)&(~7); // round to 8
char pic[stride*h],pic_alpha[stride*h];
- memset(pic,grey,stride*h);
+ memset(pic,g,stride*h);
memset(pic_alpha,alpha,stride*h);
draw_alpha(w,h,pic,pic_alpha,stride,
mpi->planes[0] + y * mpi->stride[0] + x * (mpi->bpp>>3),