comparison libmenu/menu.c @ 18194:fe877135c408

There is a draw_alpha for uyvy, use it.
author albeu
date Sat, 22 Apr 2006 17:04:38 +0000
parents e8cbaf092e96
children 64d82a45a05d
comparison
equal deleted inserted replaced
18193:e8cbaf092e96 18194:fe877135c408
276 case IMGFMT_Y800: 276 case IMGFMT_Y800:
277 case IMGFMT_Y8: 277 case IMGFMT_Y8:
278 return vo_draw_alpha_yv12; 278 return vo_draw_alpha_yv12;
279 case IMGFMT_YUY2: 279 case IMGFMT_YUY2:
280 return vo_draw_alpha_yuy2; 280 return vo_draw_alpha_yuy2;
281 case IMGFMT_UYVY:
282 return vo_draw_alpha_uyvy;
281 } 283 }
282 284
283 return NULL; 285 return NULL;
284 } 286 }
285 287