Mercurial > mplayer.hg
changeset 7272:fcbe94c83ff6
config() parameters change
author | zdar |
---|---|
date | Wed, 04 Sep 2002 21:53:38 +0000 |
parents | b1eed1b2f228 |
children | 6cca0ab10e19 |
files | libvo/vo_directfb2.c |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vo_directfb2.c Wed Sep 04 21:50:17 2002 +0000 +++ b/libvo/vo_directfb2.c Wed Sep 04 21:53:38 2002 +0000 @@ -379,7 +379,7 @@ static uint32_t config(uint32_t s_width, uint32_t s_height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, - uint32_t format,const vo_tune_info_t *info) + uint32_t format) { /* * (Locals) @@ -539,11 +539,12 @@ // test surface for flipping DFBCHECK(primary->GetCapabilities(primary,&caps)); - +// primary->Clear(primary,0,0,0,0); flipping = 0; if (caps & DSCAPS_FLIPPING) { ret = primary->Flip(primary,NULL,0); if (ret==DFB_OK) { +// primary->Clear(primary,0,0,0,0); flipping = 1; } };